Files
windmill/backend/migrations/20260313000000_resource_non_diffable.up.sql
T
2026-03-13 21:32:51 +01:00

4 lines
249 B
SQL

-- Add non_diffable flag to resource table.
-- When true, the resource is excluded from workspace diff comparisons (e.g. auto-created resources during fork).
ALTER TABLE resource ADD COLUMN IF NOT EXISTS non_diffable BOOLEAN NOT NULL DEFAULT false;