Files
furumi-ng/furumi-agent/migrations/0003_artist_merges.sql
AB-UK e1782a6e3b
All checks were successful
Publish Metadata Agent Image / build-and-push-image (push) Successful in 1m7s
Publish Web Player Image / build-and-push-image (push) Successful in 1m11s
Publish Server Image / build-and-push-image (push) Successful in 2m14s
Added merge
2026-03-19 00:55:49 +00:00

11 lines
328 B
SQL

CREATE TABLE artist_merges (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
status TEXT NOT NULL DEFAULT 'pending',
source_artist_ids TEXT NOT NULL,
proposal TEXT,
llm_notes TEXT,
error_message TEXT,
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);