Files
huly-platform/server/postgres/migrations/spaceSchema.sql
T
2025-01-27 00:47:24 +07:00

6 lines
101 B
SQL

ALTER TABLE space
ADD "archived" bool;
UPDATE space
SET "archived" = (data->>'archived')::boolean;