Removed failed option for the status field for now
This commit is contained in:
@@ -5,7 +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')),
|
||||
status TEXT CHECK (status IN ('pending', 'processing', 'done')),
|
||||
data BYTEA NOT NULL
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user