Files
whatsapp/migrations/20260220_media_queue_attempts.sql
T
2026-02-20 11:21:06 -05:00

5 lines
270 B
SQL

-- 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';