Skip to content
Snippets Groups Projects
Commit f99ece6f authored by Arne Stabenau's avatar Arne Stabenau
Browse files

repeat_type added, index added, repeat_class made varchar100

parent a8265e5c
No related branches found
No related tags found
No related merge requests found
......@@ -247,14 +247,16 @@ CREATE TABLE repeat_consensus (
repeat_consensus_id int unsigned NOT NULL auto_increment,
repeat_name varchar(255) NOT NULL,
repeat_class varchar(40) NOT NULL, # eg: SINE, LINE, DNA Transposon,
repeat_class varchar(100) NOT NULL, # eg: SINE, LINE, DNA Transposon,
# Retroviral LTR, Satellite,Tandem
repeat_type varchar(40) NOT NULL,
repeat_consensus text,
PRIMARY KEY( repeat_consensus_id ),
KEY name (repeat_name),
KEY class (repeat_class),
KEY consensus(repeat_consensus(10))
KEY consensus(repeat_consensus(10)),
KEY type( repeat_type )
);
......
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