refactor: 处理优化migration文件与model文件字段不一致

This commit is contained in:
2025-06-12 17:41:14 +08:00
parent 736bf19cd6
commit 7eac43e146
13 changed files with 58 additions and 19 deletions

View File

@@ -29,12 +29,13 @@ class CreateSysConfigGroup extends Migrator
{
$table = $this->table('sys_config_group', ['engine' => 'InnoDB', 'comment' => '系统配置分组表']);
$table->addColumn('language_id', 'integer', ['null' => false, 'comment' => '语言ID'])
->addColumn('unique_label', 'string', ['32' => 64, 'null' => true, 'default' => 'null', 'comment' => '唯一标识'])
->addColumn('unique_label', 'string', ['limit' => 64, 'null' => true, 'default' => null, 'comment' => '唯一标识'])
->addColumn('name', 'string', ['limit' => 50, 'default' => '', 'comment' => '分组名称'])
->addColumn('sort', 'integer', ['limit' => 11, 'default' => 0, 'comment' => '排序'])
->addColumn('status', 'boolean', ['limit' => 1, 'default' => 1, 'comment' => '状态 -1禁用, 1启用'])
->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])
->addColumn('updated_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP', 'comment' => '更新时间'])
->addColumn('deleted_at', 'timestamp', ['null' => true, 'default' => null, 'comment' => '删除时间'])
->create();
}
}