1
0
Fork 0
database/20230305163159_inflections.up.sql
2023-03-05 20:35:32 +04:00

9 lines
300 B
SQL

CREATE TABLE inflections (
-- name type constraints
id BIGSERIAL PRIMARY KEY,
part_id BIGINT NOT NULL REFERENCES parts (id),
descr VARCHAR NOT NULL,
-- CONSTRAINT name CHECK (condition)
CONSTRAINT descr_is_sane_text CHECK (is_sane_text(descr))
);