mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-18 16:02:10 +00:00
a3da19dbc3
* fix(backend): remove itered from parallel for-loop * remove fk on v2_job_queue
8 lines
281 B
SQL
8 lines
281 B
SQL
-- Remove foreign key constraint - we'll handle cleanup manually in monitor.rs
|
|
ALTER TABLE flow_iterator_data
|
|
DROP CONSTRAINT IF EXISTS flow_iterator_data_job_id_fkey;
|
|
|
|
-- Remove created_at column as it's not needed
|
|
ALTER TABLE flow_iterator_data
|
|
DROP COLUMN IF EXISTS created_at;
|