diff --git a/database/migrations/20241228093758_create_sys_menu.php b/database/migrations/20241228093758_create_sys_menu.php index be08bd8b..f05b54b9 100644 --- a/database/migrations/20241228093758_create_sys_menu.php +++ b/database/migrations/20241228093758_create_sys_menu.php @@ -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' => '创建时间'])