Skip to content
Snippets Groups Projects
Commit 80ff4d7d authored by Leo Gordon's avatar Leo Gordon
Browse files

forgot to add a foreign key on semaphored_job_id

parent e78646b2
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@ ALTER TABLE job_message ADD FOREIGN KEY (worker_id) REFERENCES hiv
ALTER TABLE analysis_job_file ADD FOREIGN KEY (worker_id) REFERENCES hive(worker_id);
ALTER TABLE analysis_job ADD FOREIGN KEY (prev_analysis_job_id) REFERENCES analysis_job(analysis_job_id);
ALTER TABLE analysis_job ADD FOREIGN KEY (semaphored_job_id) REFERENCES analysis_job(analysis_job_id);
ALTER TABLE job_message ADD FOREIGN KEY (analysis_job_id) REFERENCES analysis_job(analysis_job_id);
ALTER TABLE analysis_job_file ADD FOREIGN KEY (analysis_job_id) REFERENCES analysis_job(analysis_job_id);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment