From 9e49cf4bd112a2a16e5c4c94bedb2f6adef86149 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 24 Apr 2015 07:18:51 -0800 Subject: [PATCH] Type species --- migrations/00003_AddSpecies_up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/00003_AddSpecies_up.sql b/migrations/00003_AddSpecies_up.sql index 5fb28ee..dfd767a 100644 --- a/migrations/00003_AddSpecies_up.sql +++ b/migrations/00003_AddSpecies_up.sql @@ -5,6 +5,7 @@ CREATE TABLE species ( id BIGSERIAL NOT NULL, genus_id BIGINT NOT NULL, species_name CHARACTER VARYING(100) NOT NULL, + type_species BOOLEAN NULL, subspecies_species_id BIGINT NULL, created_at TIMESTAMP WITH TIME ZONE NOT NULL,