Files
query-orchestration/database/migrations/20241223113819_create_queryconfig_table.up.sql
T
Michael McGuinness 339ce185ad jsonextractionv0
2024-12-23 12:26:05 +00:00

9 lines
251 B
SQL

CREATE TABLE queryConfigs (
id uuid primary key,
queryId uuid not null,
config jsonb not null,
addedVersion int not null,
removedVersion int,
foreign key (queryId) references queries(id),
unique (queryId, removedVersion)
);