refactor: 修改系统菜单表结构及迁移文件

This commit is contained in:
2025-02-27 17:53:53 +08:00
parent 465405261e
commit eb3ca0b501

View File

@@ -29,9 +29,15 @@ class CreateSysMenu extends Migrator
{
$table = $this->table('sys_menu', ['engine' => 'MyISAM', 'comment' => '系统菜单表']);
$table->addColumn('pid', 'integer', ['null' => false, 'default' => 0, 'comment' => '父级ID'])
->addColumn('title', 'string', ['limit' => 64, 'null' => false, 'comment' => '菜单标题'])
->addColumn('name', 'string', ['limit' => 64, 'null' => false, 'comment' => '菜单名称'])
->addColumn('url', 'string', ['limit' => 128, 'null' => false, 'comment' => '菜单URL'])
->addColumn('icon', 'string', ['limit' => 64, 'null' => false, 'comment' => '菜单图标'])
->addColumn('path', 'string', ['limit' => 128, 'null' => false, 'comment' => '菜单path'])
->addColumn('icon', 'string', ['limit' => 64, 'null' => true, 'comment' => '菜单图标'])
->addColumn('redirect', 'string', ['limit' => 128, 'null' => true, 'comment' => '菜单重定向'])
->addColumn('component', 'string', ['limit' => 128, 'null' => true, 'comment' => '菜单组件'])
->addColumn('hidden', 'boolean', ['null' => false, 'default' => 0, 'comment' => '是否隐藏菜单:1为是, 0为否'])
->addColumn('actived', 'boolean', ['null' => false, 'default' => 0, 'comment' => '是否为选中状态:1为是, 0为否'])
->addColumn('keep_alive', 'boolean', ['null' => false, 'default' => 0, 'comment' => '是否缓存:1为是, 0为否'])
->addColumn('sort', 'integer', ['null' => false, 'default' => 0, 'comment' => '菜单排序'])
->addColumn('status', 'boolean', ['null' => false, 'default' => 1, 'comment' => '-1为禁用, 1为启用'])
->addColumn('created_at', 'timestamp', ['null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '创建时间'])