mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 16:02:19 +00:00
a3da19dbc3
* fix(backend): remove itered from parallel for-loop * remove fk on v2_job_queue
9 lines
301 B
SQL
9 lines
301 B
SQL
-- Re-add created_at column
|
|
ALTER TABLE flow_iterator_data
|
|
ADD COLUMN created_at TIMESTAMP WITH TIME ZONE DEFAULT now();
|
|
|
|
-- Re-add foreign key constraint
|
|
ALTER TABLE flow_iterator_data
|
|
ADD CONSTRAINT flow_iterator_data_job_id_fkey
|
|
FOREIGN KEY (job_id) REFERENCES v2_job_queue (id) ON DELETE CASCADE;
|