mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-25 16:02:11 +00:00
cba4db950b
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
4 lines
249 B
SQL
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;
|