mirror of
https://github.com/mautrix/signal.git
synced 2025-03-14 14:15:36 +00:00
3 lines
175 B
SQL
3 lines
175 B
SQL
-- v14: Remove redundant notice_room column from users
|
|
UPDATE "user" SET management_room = COALESCE(management_room, notice_room);
|
|
ALTER TABLE "user" DROP COLUMN notice_room;
|