MarseyWorld/migrations/20240802-make-green-dot-app...

5 lines
293 B
MySQL
Raw Normal View History

alter table chat_memberships add column muted bool not null default false;
alter table chat_memberships alter column muted drop default;
2024-08-02 08:42:55 +00:00
update chat_memberships set muted=true, notification=false where notification is null;
alter table chat_memberships alter column notification set not null;