This commit is contained in:
Lizandro Guarnizo
2026-02-20 11:21:06 -05:00
parent c9ec58979e
commit 602e6d3724
11 changed files with 130 additions and 30 deletions
@@ -0,0 +1,4 @@
-- Add attempts column and expand status enum for media_queue retry logic
ALTER TABLE media_queue
ADD COLUMN IF NOT EXISTS attempts INT NOT NULL DEFAULT 0,
MODIFY COLUMN status ENUM('pending','processing','done','failed','permanently_failed') DEFAULT 'pending';