Skip to content
Snippets Groups Projects
Commit b15fd81c authored by Kieron Taylor's avatar Kieron Taylor :angry:
Browse files

Added constraints for new alt_allele tables.

parent ff358031
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,9 @@
# key constraints on MyISAM tables.
ALTER table alt_allele ADD FOREIGN KEY (gene_id) REFERENCES gene(gene_id);
ALTER table alt_allele ADD FOREIGN KEY (alt_allele_group_id) REFERENCES alt_allele_group(alt_allele_group_id)
ALTER table alt_allele_id ADD FOREIGN KEY (alt_allele_id) REFERENCES alt_allele(alt_allele_id);
ALTER table analysis_description ADD FOREIGN KEY (analysis_id) REFERENCES analysis(analysis_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