Files
mostlymatter/server/config/migrations/postgres/000001_create_configurations.up.sql

9 строки
197 B
SQL

CREATE TABLE IF NOT EXISTS configurations (
id varchar(26),
value text NOT NULL,
createat bigint NOT NULL,
active boolean DEFAULT NULL,
PRIMARY KEY (id),
UNIQUE (active)
);