price_api/tables/option_sequence.pg.sql

8 lines
177 B
SQL

CREATE TABLE option_sequence (
entity text NOT NULL,
seq int4 NOT NULL,
func text NOT NULL,
"domain" text NOT NULL,
CONSTRAINT option_sequence_pkey PRIMARY KEY (entity)
);