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
Matthew Dillon 6030310caa Rebooting
2015-03-20 15:52:29 -08: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)
);