007_sidecar, 008_processing, 009_duplicate_groups migrations. Tag, sidecar, job, batch, plugin, pipeline, duplicate repos.
7 lines
237 B
SQL
7 lines
237 B
SQL
CREATE TABLE duplicate_groups (
|
|
group_id UUID PRIMARY KEY,
|
|
detection_method TEXT NOT NULL DEFAULT 'exact_hash',
|
|
status TEXT NOT NULL DEFAULT 'unresolved',
|
|
candidates JSONB NOT NULL DEFAULT '[]'
|
|
);
|