ApiAdmin/database/migrations/20190513070628_admin_menu.php
2020-10-13 17:31:18 +08:00

83 lines
2.8 KiB
PHP

<?php
use think\migration\Migrator;
use Phinx\Db\Adapter\MysqlAdapter;
class AdminMenu extends Migrator {
/**
* Change Method.
*
* Write your reversible migrations using this method.
*
* More information on writing migrations is available here:
* http://docs.phinx.org/en/latest/migrations.html#the-abstractmigration-class
*
* The following commands can be used in this method and Phinx will
* automatically reverse them when rolling back:
*
* createTable
* renameTable
* addColumn
* renameColumn
* addIndex
* addForeignKey
*
* Remember to call "create()" or "update()" and NOT "save()" when working
* with the Table class.
*/
/**
* CREATE TABLE `admin_menu` (
* `id` int(11) unsigned NOT NULL,
* `name` varchar(50) NOT NULL DEFAULT '' COMMENT '菜单名',
* `fid` int(11) NOT NULL DEFAULT '0' COMMENT '父级菜单ID',
* `url` varchar(50) NOT NULL DEFAULT '' COMMENT '链接',
* `auth` int(2) NOT NULL DEFAULT '0' COMMENT '访客权限',
* `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
* `hide` int(2) NOT NULL DEFAULT '0' COMMENT '是否显示',
* `icon` varchar(50) NOT NULL DEFAULT '' COMMENT '菜单图标',
* `level` int(2) NOT NULL DEFAULT '0' COMMENT '菜单认证等级',
* PRIMARY KEY (`id`)
* ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='目录信息';
*/
public function change() {
$table = $this->table('admin_menu', [
'comment' => '目录信息'
])->setCollation('utf8mb4_general_ci');
$table->addColumn('name', 'string', [
'limit' => 50,
'default' => '',
'comment' => '菜单名'
])->addColumn('fid', 'integer', [
'limit' => 11,
'default' => 0,
'comment' => '父级菜单ID'
])->addColumn('url', 'string', [
'limit' => 50,
'default' => '',
'comment' => '链接'
])->addColumn('auth', 'integer', [
'limit' => MysqlAdapter::INT_TINY,
'default' => 0,
'comment' => '访客权限'
])->addColumn('sort', 'integer', [
'limit' => 11,
'default' => 0,
'comment' => '排序'
])->addColumn('hide', 'integer', [
'limit' => MysqlAdapter::INT_TINY,
'default' => 0,
'comment' => '是否显示'
])->addColumn('icon', 'string', [
'limit' => 50,
'default' => '',
'comment' => '菜单图标'
])->addColumn('level', 'integer', [
'limit' => MysqlAdapter::INT_TINY,
'default' => 0,
'comment' => '菜单认证等级'
])->create();
}
}