2024-12-23 12:26:05 +00:00
|
|
|
CREATE TABLE queryConfigs (
|
2025-01-03 13:47:19 +00:00
|
|
|
id uuid primary key DEFAULT gen_random_uuid(),
|
2024-12-23 12:26:05 +00:00
|
|
|
queryId uuid not null,
|
|
|
|
|
config jsonb not null,
|
|
|
|
|
addedVersion int not null,
|
|
|
|
|
removedVersion int,
|
|
|
|
|
foreign key (queryId) references queries(id),
|
|
|
|
|
unique (queryId, removedVersion)
|
|
|
|
|
);
|