Files
Memoh/db/migrations/0011_add_inbox.down.sql
T
Acbox Liu c591af14b0 feat: bot inbox (#77)
* feat: bot inbox

* feat: unified header

* fix: missing tool_call usage

* feat: add group name in header
2026-02-22 01:27:24 +08:00

9 lines
264 B
SQL

-- 0011_add_inbox (down)
-- Remove bot_inbox table and max_inbox_items column.
DROP INDEX IF EXISTS idx_bot_inbox_bot_created;
DROP INDEX IF EXISTS idx_bot_inbox_bot_unread;
DROP TABLE IF EXISTS bot_inbox;
ALTER TABLE bots DROP COLUMN IF EXISTS max_inbox_items;