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/datastore/migrations/00009_AddTest_Methods_up.sql
2014-12-03 15:25:59 -09:00

14 lines
330 B
SQL

-- bactdb
-- Matthew R Dillon
CREATE TABLE test_methods (
id BIGSERIAL NOT NULL,
name CHARACTER VARYING(100) 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 test_methods_pkey PRIMARY KEY (id)
);