Files
query-orchestration/database/migrations/20241202153119_create_queries_table.up.sql
T

6 lines
188 B
SQL
Raw Normal View History

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,
type queryType not null
);