refactor: 角色添加是否系统角色字段相关逻辑

This commit is contained in:
2025-03-04 09:46:57 +08:00
parent c7e1cc5bed
commit 919e740073
3 changed files with 6 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ class CreateSysRole extends Migrator
$table->addColumn('pid', 'integer', ['null' => false, 'default' => 0, 'comment' => '父级ID'])
->addColumn('name', 'string', ['limit' => 64, 'null' => false, 'comment' => '角色名称'])
->addColumn('desc', 'string', ['limit' => 255, 'null' => false, 'comment' => '角色描述'])
->addColumn('is_system', 'boolean', ['null' => false, 'limit' => 1, 'default' => 0, 'comment' => '是否系统角色:1为是,0为否'])
->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' => '删除时间'])