Skip to content
Snippets Groups Projects
Commit 087f0a80 authored by Graham McVicker's avatar Graham McVicker
Browse files

added name index to seq_region table

parent 3964c3c0
No related branches found
No related tags found
No related merge requests found
......@@ -1027,7 +1027,8 @@ CREATE TABLE seq_region (
length INT(10) NOT NULL,
UNIQUE(coord_system_id, name),
PRIMARY KEY (seq_region_id)
PRIMARY KEY (seq_region_id),
KEY name_idx(name)
) TYPE=MyISAM;
......
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