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/00008_AddText_Measurements_up.sql
2014-10-23 16:14:34 -08:00

14 lines
325 B
SQL

-- bactdb
-- Matthew R Dillon
CREATE TABLE text_measurements (
id BIGSERIAL NOT NULL,
text_measurement_name CHARACTER VARYING(100),
created_at TIMESTAMP WITH TIME ZONE,
updated_at TIMESTAMP WITH TIME ZONE,
deleted_at TIMESTAMP WITH TIME ZONE,
CONSTRAINT text_measurements_pkey PRIMARY KEY (id)
);