8 lines
177 B
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)
|
|
);
|