Files
flatrender/backend/db/migrations/28_render_scan_mode.sql
T

9 lines
425 B
SQL
Raw Normal View History

-- =====================================================================
-- RENDER SCHEMA — scan jobs carry the project TYPE so scan.jsx parses with
-- the right convention (fix = layer-name encoding, flexible/mockup = comps).
-- =====================================================================
SET search_path TO render, public;
ALTER TABLE scan_jobs ADD COLUMN IF NOT EXISTS mode TEXT NOT NULL DEFAULT 'flexible';