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:
@@ -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
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user