Skip to content
Snippets Groups Projects
Commit 80e1862c authored by Ian Longden's avatar Ian Longden
Browse files

Store the databases type in the interpro table so that we can easily see where...

Store the databases type in the interpro table so that we can easily see where they came from. i.e. PRINTS, PFAM etc
parent 3457eedc
No related branches found
No related tags found
No related merge requests found
......@@ -165,7 +165,8 @@ CREATE TABLE species (
CREATE TABLE interpro (
interpro varchar(255) not null,
pfam varchar(255) not null
pfam varchar(255) not null,
dbtype enum ('PROSITE','PFAM','PREFILE','PROFILE','TIGRFAMs','PRINTS','PIRSF','SMART','SSF') not null
) COLLATE=latin1_swedish_ci TYPE=InnoDB;
......
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