Added status to songQueue table (#122)

* Added status to songQueue table

* Added status

* Formatting

* Removed failed option for the status field for now
This commit was merged in pull request #122.
This commit is contained in:
KD
2025-04-24 21:11:45 -04:00
committed by GitHub
parent f823a99984
commit db7350b550
2 changed files with 19 additions and 4 deletions
@@ -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')),
data BYTEA NOT NULL
);