mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-03 15:02:13 +08:00
7 lines
298 B
MySQL
7 lines
298 B
MySQL
|
|
-- 添加分组支持的模型系列字段
|
|||
|
|
ALTER TABLE groups
|
|||
|
|
ADD COLUMN IF NOT EXISTS supported_model_scopes JSONB NOT NULL
|
|||
|
|
DEFAULT '["claude", "gemini_text", "gemini_image"]'::jsonb;
|
|||
|
|
|
|||
|
|
COMMENT ON COLUMN groups.supported_model_scopes IS '支持的模型系列:claude, gemini_text, gemini_image';
|