Files
query-orchestration/database/migrations/20241202153119_create_queries_table.up.sql
T
2024-12-19 11:44:13 +00:00

6 lines
167 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
);