refactor: 配置项值字数限制修改

This commit is contained in:
2025-04-23 16:54:10 +08:00
parent c759386004
commit 7e70a6f5b0
3 changed files with 8 additions and 8 deletions

View File

@@ -31,8 +31,8 @@ class CreateSysConfig extends Migrator
$table->addColumn('group_id', 'integer', ['limit' => 11, 'null' => false, 'comment' => '分组ID'])
->addColumn('title', 'string', ['limit' => 64, 'null' => false, 'comment' => '配置标题'])
->addColumn('name', 'string', ['limit' => 64, 'null' => false, 'comment' => '配置名称'])
->addColumn('value', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '配置值'])
->addColumn('extra', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '配置额外信息'])
->addColumn('value', 'string', ['limit' => 512, 'null' => true, 'default' => null, 'comment' => '配置值'])
->addColumn('extra', 'string', ['limit' => 512, 'null' => true, 'default' => null, 'comment' => '配置额外信息'])
->addColumn('type', 'string', ['limit' => 64, 'null' => false, 'comment' => '配置类型: text, textarea, number, select, checkbox, radio, date, time, datetime'])
->addColumn('sort', 'integer', ['limit' => 11, 'null' => false, 'default' => 0, 'comment' => '排序'])
->addColumn('remark', 'string', ['limit' => 255, 'null' => true, 'default' => null, 'comment' => '备注'])