Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
ensembl
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Jira
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ensembl-gh-mirror
ensembl
Commits
b15fd81c
Commit
b15fd81c
authored
11 years ago
by
Kieron Taylor
Browse files
Options
Downloads
Patches
Plain Diff
Added constraints for new alt_allele tables.
parent
ff358031
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sql/foreign_keys.sql
+3
-0
3 additions, 0 deletions
sql/foreign_keys.sql
with
3 additions
and
0 deletions
sql/foreign_keys.sql
+
3
−
0
View file @
b15fd81c
...
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment