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/00009_AddTest_Methods_up.sql
2015-04-24 07:43:48 -08:00

14 lines
312 B
SQL

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