mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
c591af14b0
* feat: bot inbox * feat: unified header * fix: missing tool_call usage * feat: add group name in header
9 lines
264 B
SQL
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;
|