Files
query-orchestration/database/migrations/20241218183030_create_collectors_table.up.sql
T
2024-12-19 18:49:22 +00:00

8 lines
248 B
SQL

CREATE TABLE collectors (
id uuid primary key,
jobId uuid not null,
minCleanVersion int not null default 1,
minTextVersion int not null default 1,
latestVersion int not null default 1,
activeVersion int not null default 1
);