Files
huly-platform/server/postgres/migrations/uncSchema.sql
T
2024-11-01 21:03:43 +05:00

11 lines
225 B
SQL

ALTER TABLE notification_user
ADD "user" text;
ALTER TABLE notification_user
DROP COLUMN "attachedTo";
UPDATE notification_user
SET "user" = (data->>'user');
ALTER TABLE notification_user
ALTER COLUMN "user" SET NOT NULL;