mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-10 08:07:03 +00:00
* feat(backend): job result stream optimization * get offset locally instead of from db * fix: agent worker result stream * update ref * nit * remove foreign key on job * fix build
4 lines
208 B
SQL
4 lines
208 B
SQL
-- Add down migration script here
|
|
DROP TABLE job_result_stream_v2;
|
|
|
|
ALTER TABLE job_result_stream ADD CONSTRAINT fk_job_result_stream_job_id FOREIGN KEY (job_id) REFERENCES v2_job_queue(id) ON DELETE CASCADE; |