owpengram-server/deploy/migrations/0012_outbox_delete_on_deliver.down.sql
2026-06-04 01:37:39 +08:00

5 lines
456 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 0012 down: 恢复宽 status CHECK含 'delivered')以保持迁移链完整。
-- 注意:方案 A 已删除的 delivered 行不可恢复query 层DELETE回退需手动改回 UPDATE本 down 不涉及代码。
ALTER TABLE dispatch_outbox DROP CONSTRAINT IF EXISTS dispatch_outbox_status_check;
ALTER TABLE dispatch_outbox ADD CONSTRAINT dispatch_outbox_status_check
CHECK (status IN ('pending', 'dispatching', 'delivered', 'failed'));