⚠️ Breaking Change
English
Description
- Feature: Modify the
model_mapping
column type in thechannels
table fromvarchar(1024)
toTEXT
. - This change removes the restriction on the length of model redirection.
- A MySQL migration script has been added to alter the column type during database initialization.
Instructions
Under normal circumstances, no manual actions are required. However, if issues arise, please modify the channels
table manually. Here is the SQL statement to do so:
ALTER TABLE channels MODIFY COLUMN model_mapping TEXT;
中文
描述
- 特性: 将
channels
表中的model_mapping
列类型从varchar(1024)
修改为TEXT
。 - 这个更改取消了模型重定向长度的限制。
- 在数据库初始化期间添加了 MySQL 迁移脚本以更改列类型。
指导
正常情况下不需要手动操作,如果出现问题,请自行修改 channels
表。以下是 SQL 语句:
ALTER TABLE channels MODIFY COLUMN model_mapping TEXT;
Full Changelog: v0.4.6.7...v0.4.6.8