Skip to content
Snippets Groups Projects
Commit 59d306ad authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Resurrected species_id

parent f71d2dd9
No related branches found
No related tags found
No related merge requests found
......@@ -77,10 +77,12 @@ CREATE TABLE source (
CREATE TABLE species (
species_id int unsigned not null auto_increment,
taxonomy_id int unsigned not null,
name varchar(255) not null,
PRIMARY KEY(taxonomy_id),
PRIMARY KEY(species_id),
KEY taxonomy_idx(taxonomy_id),
KEY name_idx(name)
);
......
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