Updated songQueue to have a user_id field #156

This commit is contained in:
kdeng00
2025-07-18 19:03:04 -04:00
parent c5f0d5fae8
commit 381162b115
+2 -1
View File
@@ -6,7 +6,8 @@ CREATE TABLE IF NOT EXISTS "songQueue" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(), id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
filename TEXT NOT NULL, filename TEXT NOT NULL,
status TEXT CHECK (status IN ('pending', 'ready', 'processing', 'done')), status TEXT CHECK (status IN ('pending', 'ready', 'processing', 'done')),
data BYTEA NULL data BYTEA NULL,
user_id UUID NULL
); );
-- Table to store queued metadata -- Table to store queued metadata