Files
Memoh/db/migrations/0020_add_model_id_tracking.down.sql
T
Acbox Liu 0cdf822603 feat: token usage state (#153)
* feat: token usage state

* fix: typo
2026-03-01 02:19:07 +08:00

9 lines
250 B
SQL

-- 0020_add_model_id_tracking (rollback)
-- Remove model_id column from bot_history_messages and bot_heartbeat_logs
ALTER TABLE bot_heartbeat_logs
DROP COLUMN IF EXISTS model_id;
ALTER TABLE bot_history_messages
DROP COLUMN IF EXISTS model_id;