Files
windmill/backend/migrations/20260313000000_resource_non_diffable.up.sql
Diego Imbert cba4db950b feat: add non_diffable flag to resource table
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
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;