8 lines
274 B
SQL
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
|
|
); |