Create species, cleanup schema.

- create species
- species genus_id not null
This commit is contained in:
Matthew Dillon 2014-10-15 16:43:09 -08:00
parent ed2ba26654
commit 7fe5566edf
10 changed files with 155 additions and 3 deletions

View file

@ -3,7 +3,7 @@
CREATE TABLE species (
id BIGSERIAL NOT NULL,
genusid BIGINT,
genusid BIGINT NOT NULL,
speciesname CHARACTER VARYING(100),
createdat TIMESTAMP WITH TIME ZONE,