mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-25 20:42:56 +03:00
084eca268e
Some checks are pending
CI / build (push) Waiting to run
CI / svelte-check (push) Blocked by required conditions
CI / formatting (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / uitest (push) Waiting to run
CI / uitest-pg (push) Waiting to run
CI / uitest-qms (push) Waiting to run
CI / docker-build (push) Blocked by required conditions
CI / dist-build (push) Blocked by required conditions
Signed-off-by: Denis Bykhov <bykhov.denis@gmail.com>
25 lines
507 B
SQL
25 lines
507 B
SQL
ALTER TABLE notification
|
|
ADD "isViewed" bool,
|
|
ADD archived bool,
|
|
ADD "user" text;
|
|
|
|
ALTER TABLE notification
|
|
DROP COLUMN "attachedTo";
|
|
|
|
UPDATE notification
|
|
SET "isViewed" = (data->>'isViewed')::boolean;
|
|
|
|
UPDATE notification
|
|
SET "archived" = (data->>'archived')::boolean;
|
|
|
|
UPDATE notification
|
|
SET "user" = (data->>'user');
|
|
|
|
ALTER TABLE notification
|
|
ALTER COLUMN "isViewed" SET NOT NULL;
|
|
|
|
ALTER TABLE notification
|
|
ALTER COLUMN archived SET NOT NULL;
|
|
|
|
ALTER TABLE notification
|
|
ALTER COLUMN "user" SET NOT NULL; |