modified 优化迁移脚本

This commit is contained in:
zhaoxiang 2020-03-24 18:44:11 +08:00
parent 044529dc70
commit 463a3a8b3a

View File

@ -37,6 +37,18 @@ class ChangeAdminMenuField extends Migrator {
'limit' => MysqlAdapter::INT_TINY,
'default' => 1,
'comment' => '是否显示1-显示0-隐藏'
])->addColumn('component', 'string', [
'limit' => 255,
'default' => '',
'comment' => '前端组件'
])->addColumn('class_name', 'string', [
'limit' => 255,
'default' => '',
'comment' => '后端类库'
])->addColumn('router', 'string', [
'limit' => 255,
'default' => '',
'comment' => '前端路由'
])->update();
}