mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-25 07:00:48 +09:00
2f38662d4d
* feat: heartbeat * feat: independent heartbeat model
10 lines
373 B
SQL
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;
|