refactor: 修改config_group的migration文件
This commit is contained in:
@@ -29,6 +29,7 @@ class CreateSysConfigGroup extends Migrator
|
|||||||
{
|
{
|
||||||
$table = $this->table('sys_config_group', ['engine' => 'InnoDB', 'comment' => '系统配置分组表']);
|
$table = $this->table('sys_config_group', ['engine' => 'InnoDB', 'comment' => '系统配置分组表']);
|
||||||
$table->addColumn('language_id', 'integer', ['null' => false, 'comment' => '语言ID'])
|
$table->addColumn('language_id', 'integer', ['null' => false, 'comment' => '语言ID'])
|
||||||
|
->addColumn('unique_label', 'string', ['32' => 64, 'null' => true, 'default' => 'null', 'comment' => '唯一标识'])
|
||||||
->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '分组名称'])
|
->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '分组名称'])
|
||||||
->addColumn('sort', 'integer', ['limit' => 11, 'default' => 0, 'comment' => '排序'])
|
->addColumn('sort', 'integer', ['limit' => 11, 'default' => 0, 'comment' => '排序'])
|
||||||
->addColumn('status', 'boolean', ['limit' => 1, 'default' => 1, 'comment' => '状态 -1禁用, 1启用'])
|
->addColumn('status', 'boolean', ['limit' => 1, 'default' => 1, 'comment' => '状态 -1禁用, 1启用'])
|
||||||
|
|||||||
Reference in New Issue
Block a user