This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/migrations/00002_AddGenera_up.sql
2015-04-24 07:43:48 -08:00

14 lines
305 B
SQL

-- bactdb
-- Matthew R Dillon
CREATE TABLE genera (
id BIGSERIAL NOT NULL,
genus_name TEXT NOT NULL,
created_at TIMESTAMP WITH TIME ZONE NOT NULL,
updated_at TIMESTAMP WITH TIME ZONE NOT NULL,
deleted_at TIMESTAMP WITH TIME ZONE NULL,
CONSTRAINT genus_pkey PRIMARY KEY (id)
);