Wipe data from song queue #135

Merged
kdeng00 merged 8 commits from wipe_data_from_song_queue into v0.2 2025-05-25 21:12:17 -04:00
Showing only changes of commit 2a9d2b08b8 - Show all commits
+1 -1
View File
@@ -6,7 +6,7 @@ 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', 'processing', 'done')), status TEXT CHECK (status IN ('pending', 'processing', 'done')),
data BYTEA NOT NULL data BYTEA NULL
); );
-- Table to store queued metadata -- Table to store queued metadata