mirror of
https://github.com/hcengineering/platform.git
synced 2026-08-18 02:15:44 +02:00
6 lines
101 B
SQL
6 lines
101 B
SQL
ALTER TABLE space
|
|
ADD "archived" bool;
|
|
|
|
UPDATE space
|
|
SET "archived" = (data->>'archived')::boolean;
|