6 lines
162 B
SQL
6 lines
162 B
SQL
CREATE TABLE queries (
|
|
id uuid primary key,
|
|
latestVersion int not null default 1,
|
|
activeVersion int not null default 1,
|
|
type queryType not null
|
|
); |