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
328718d6
Commit
328718d6
authored
12 years ago
by
Andy Yates
Browse files
Options
Downloads
Patches
Plain Diff
ENSCORESW-165
. changes intron_supporting_evidence to allow linkage to a transcript
parent
7abc0e2f
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
+7
-4
7 additions, 4 deletions
sql/foreign_keys.sql
with
7 additions
and
4 deletions
sql/foreign_keys.sql
+
7
−
4
View file @
328718d6
...
...
@@ -61,15 +61,13 @@ ALTER table gene_attrib ADD FOREIGN KEY (gene_id) REFERENCES gene(gene_id);
ALTER
table
gene_archive
ADD
FOREIGN
KEY
(
mapping_session_id
)
REFERENCES
mapping_session
(
mapping_session_id
);
ALTER
table
gene_archive
ADD
FOREIGN
KEY
(
peptide_archive_id
)
REFERENCES
peptide_archive
(
peptide_archive_id
);
ALTER
table
o
nt
ology_xref
ADD
FOREIGN
KEY
(
object_xref
_id
)
REFERENCES
object_xref
(
object_xref
_id
);
ALTER
table
o
nt
ology_xref
ADD
FOREIGN
KEY
(
s
ource_xref
_id
)
REFERENCES
xref
(
xref
_id
);
ALTER
table
i
nt
ron_supporting_evidence
ADD
FOREIGN
KEY
(
analysis
_id
)
REFERENCES
analysis
(
analysis
_id
);
ALTER
table
i
nt
ron_supporting_evidence
ADD
FOREIGN
KEY
(
s
eq_region
_id
)
REFERENCES
seq_region
(
seq_region
_id
);
ALTER
table
identity_xref
ADD
FOREIGN
KEY
(
object_xref_id
)
REFERENCES
object_xref
(
object_xref_id
);
ALTER
table
karyotype
ADD
FOREIGN
KEY
(
seq_region_id
)
REFERENCES
seq_region
(
seq_region_id
);
ALTER
table
stable_id_event
ADD
FOREIGN
KEY
(
mapping_session_id
)
REFERENCES
mapping_session
(
mapping_session_id
);
ALTER
table
marker
ADD
FOREIGN
KEY
(
display_marker_synonym_id
)
REFERENCES
marker_synonym
(
marker_synonym_id
);
ALTER
table
marker_feature
ADD
FOREIGN
KEY
(
analysis_id
)
REFERENCES
analysis
(
analysis_id
);
...
...
@@ -95,6 +93,9 @@ ALTER table misc_feature_misc_set ADD FOREIGN KEY (misc_set_id) REFERENCES misc_
ALTER
table
object_xref
ADD
FOREIGN
KEY
(
xref_id
)
REFERENCES
xref
(
xref_id
);
ALTER
table
object_xref
ADD
FOREIGN
KEY
(
analysis_id
)
REFERENCES
analysis
(
analysis_id
);
ALTER
table
ontology_xref
ADD
FOREIGN
KEY
(
object_xref_id
)
REFERENCES
object_xref
(
object_xref_id
);
ALTER
table
ontology_xref
ADD
FOREIGN
KEY
(
source_xref_id
)
REFERENCES
xref
(
xref_id
);
ALTER
TABLE
operon
ADD
FOREIGN
KEY
(
analysis_id
)
REFERENCES
analysis
(
analysis_id
);
ALTER
TABLE
operon
ADD
FOREIGN
KEY
(
seq_region_id
)
REFERENCES
seq_region
(
seq_region_id
);
...
...
@@ -154,6 +155,8 @@ ALTER table splicing_transcript_pair ADD FOREIGN KEY (splicing_event_id) REFEREN
ALTER
table
splicing_transcript_pair
ADD
FOREIGN
KEY
(
transcript_id_1
)
REFERENCES
transcript
(
transcript_id
);
ALTER
table
splicing_transcript_pair
ADD
FOREIGN
KEY
(
transcript_id_2
)
REFERENCES
transcript
(
transcript_id
);
ALTER
table
stable_id_event
ADD
FOREIGN
KEY
(
mapping_session_id
)
REFERENCES
mapping_session
(
mapping_session_id
);
ALTER
table
supporting_feature
ADD
FOREIGN
KEY
(
exon_id
)
REFERENCES
exon
(
exon_id
);
ALTER
table
transcript
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