Skip to content
Snippets Groups Projects
Commit 31763196 authored by Stephen Searle's avatar Stephen Searle
Browse files

Added transcript_supporting_feature table

parent 59eebac6
No related branches found
No related tags found
No related merge requests found
......@@ -391,6 +391,22 @@ CREATE TABLE supporting_feature (
) MAX_ROWS=100000000 AVG_ROW_LENGTH=80;
################################################################################
#
# Table structure for table 'transcript_supporting_feature'
#
CREATE TABLE transcript_supporting_feature (
transcript_id int(11) DEFAULT '0' NOT NULL,
feature_type enum('dna_align_feature','protein_align_feature'),
feature_id int(11) DEFAULT '0' NOT NULL,
UNIQUE all_idx (transcript_id,feature_type,feature_id),
KEY feature_idx (feature_type,feature_id)
) MAX_ROWS=100000000 AVG_ROW_LENGTH=80;
################################################################################
#
# Table structure for table 'transcript'
......
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