Changes to coverartQueue migrations

This commit is contained in:
kdeng00
2025-05-26 15:21:34 -04:00
parent f0d2b9de71
commit 5fa1bb6edd
+1 -1
View File
@@ -20,7 +20,7 @@ CREATE TABLE IF NOT EXISTS "metadataQueue" (
-- Table to store queued coverart -- Table to store queued coverart
CREATE TABLE IF NOT EXISTS "coverartQueue" ( CREATE TABLE IF NOT EXISTS "coverartQueue" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(), id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
data BYTEA NOT NULL, data BYTEA NULL,
song_queue_id UUID NULL song_queue_id UUID NULL
); );