Files
Memoh/db/migrations/0016_heartbeat.down.sql
Acbox Liu 2f38662d4d feat: heartbeat (#108)
* feat: heartbeat

* feat: independent heartbeat model
2026-02-25 16:32:52 +08:00

10 lines
373 B
SQL

-- 0016_heartbeat (rollback)
-- Remove heartbeat configuration from bots and drop heartbeat log table.
DROP INDEX IF EXISTS idx_heartbeat_logs_bot_started;
DROP TABLE IF EXISTS bot_heartbeat_logs;
ALTER TABLE bots DROP COLUMN IF EXISTS heartbeat_prompt;
ALTER TABLE bots DROP COLUMN IF EXISTS heartbeat_interval;
ALTER TABLE bots DROP COLUMN IF EXISTS heartbeat_enabled;