Files
geo/server/migrations/20260609113000_add_schedule_enterprise_site_targets.up.sql
T

7 lines
286 B
SQL
Raw 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');