2024-12-18 18:54:48 +00:00
|
|
|
CREATE TABLE queries (
|
2025-01-03 13:47:19 +00:00
|
|
|
id uuid primary key DEFAULT gen_random_uuid(),
|
2024-12-18 18:54:48 +00:00
|
|
|
latestVersion int not null default 1,
|
|
|
|
|
activeVersion int not null default 1,
|
2024-12-19 18:49:22 +00:00
|
|
|
type queryType not null
|
2024-12-18 18:52:38 +00:00
|
|
|
);
|