platform/server/postgres/migrations/calendarSchema.sql

6 lines
101 B
MySQL
Raw Normal View History

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