Files

7 lines
286 B
SQL
Raw Permalink Normal View History

ALTER TABLE schedule_tasks
ADD COLUMN publish_enterprise_site_targets JSONB NOT NULL DEFAULT '[]'::jsonb;
ALTER TABLE schedule_tasks
ADD CONSTRAINT chk_schedule_tasks_publish_enterprise_site_targets_json
CHECK (jsonb_typeof(publish_enterprise_site_targets) = 'array');