Files
Memoh/db/migrations/0017_heartbeat_model.up.sql
Acbox Liu 2f38662d4d feat: heartbeat (#108)
* feat: heartbeat

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

6 lines
218 B
SQL

-- 0017_heartbeat_model
-- Add heartbeat_model_id column to bots for independent heartbeat model selection.
ALTER TABLE bots ADD COLUMN IF NOT EXISTS heartbeat_model_id UUID REFERENCES models(id) ON DELETE SET NULL;