Files
query-orchestration/database/migrations/20241218183030_create_collectors_table.up.sql
T
Michael McGuinness 9d3d0baa99 setdefaultidandreturn
2025-01-03 13:47:19 +00:00

8 lines
274 B
SQL

CREATE TABLE collectors (
id uuid primary key DEFAULT gen_random_uuid(),
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
);