Files
Memoh/db/migrations/0014_reasoning.down.sql
Acbox Liu 17cd077f34 feat: add thinking support (#100)
* feat: add thinking support

* feat: improve thinking block render in web and filter thinking content in channels

* fix: migrate
2026-02-23 14:41:27 +08:00

9 lines
358 B
SQL

-- 0014_reasoning (rollback)
-- Remove reasoning support flag from models and reasoning settings from bots.
ALTER TABLE bots DROP CONSTRAINT IF EXISTS bots_reasoning_effort_check;
ALTER TABLE bots DROP COLUMN IF EXISTS reasoning_effort;
ALTER TABLE bots DROP COLUMN IF EXISTS reasoning_enabled;
ALTER TABLE models DROP COLUMN IF EXISTS supports_reasoning;