refactor: 横幅标题字数限制改为256

This commit is contained in:
2025-04-22 11:14:52 +08:00
parent 685fcf9686
commit fa8feaacbd
2 changed files with 3 additions and 3 deletions

View File

@@ -30,7 +30,7 @@ class CreateSysBannerItem extends Migrator
{
$table = $this->table('sys_banner_item', ['engine' => 'InnoDB', 'comment' => '系统Banner项表']);
$table->addColumn('banner_id', 'integer', ['null' => false, 'comment' => '所属Banner ID'])
->addColumn('title', 'string', ['limit' => 128, 'null' => false, 'comment' => '标题'])
->addColumn('title', 'string', ['limit' => 256, 'null' => false, 'comment' => '标题'])
->addColumn('title_txt_color', 'string', ['limit' => 7, 'null' => false, 'default' => '', 'comment' => '标题文本颜色'])
->addColumn('desc', MysqlAdapter::PHINX_TYPE_TEXT, ['null' => true, 'default' => null, 'comment' => '描述'])
->addColumn('desc_txt_color', 'string', ['limit' => 7, 'null' => false, 'default' => '', 'comment' => '描述文本颜色'])