reminder-bot/migrations/20230731170452_reminder_archive.sql

3 lines
172 B
MySQL
Raw Normal View History

ALTER TABLE reminders ADD COLUMN `status` ENUM ('pending', 'sent', 'failed', 'deleted') NOT NULL DEFAULT 'pending';
ALTER TABLE reminders ADD COLUMN `status_message` TEXT;