Added status to songQueue table #122

Merged
kdeng00 merged 4 commits from db-songQueue_status into v0.2 2025-04-24 21:11:46 -04:00
Showing only changes of commit 12b307a9c8 - Show all commits
@@ -5,6 +5,7 @@ CREATE EXTENSION IF NOT EXISTS pgcrypto;
CREATE TABLE IF NOT EXISTS "songQueue" (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
filename TEXT NOT NULL,
status TEXT CHECK (status IN ('pending', 'processing', 'done', 'failed')),
data BYTEA NOT NULL
);