Files
query-orchestration/database/migrations/20241202153119_create_queries_table.up.sql
T
Michael McGuinness 9d3d0baa99 setdefaultidandreturn
2025-01-03 13:47:19 +00:00

6 lines
188 B
SQL

CREATE TABLE queries (
id uuid primary key DEFAULT gen_random_uuid(),
latestVersion int not null default 1,
activeVersion int not null default 1,
type queryType not null
);