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

55 lines
1.6 KiB
PHP

<?php
use think\migration\Migrator;
class AdminAuthGroupAccess 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_auth_group_access` (
* `id` int(11) unsigned NOT NULL,
* `uid` int(11) unsigned NOT NULL DEFAULT '0',
* `groupId` varchar(255) NOT NULL DEFAULT '',
* PRIMARY KEY (`id`),
* KEY `uid` (`uid`),
* KEY `groupId` (`groupId`)
* ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='用户和组的对应关系';
*/
public function change() {
$table = $this->table('admin_auth_group_access', [
'comment' => '用户和组的对应关系'
])->setCollation('utf8mb4_general_ci');
$table->addColumn('uid', 'integer', [
'limit' => 11,
'default' => 0,
'signed' => false,
'comment' => ''
])->addColumn('group_id', 'string', [
'limit' => 255,
'default' => '',
'comment' => ''
])->addIndex(['uid'])->addIndex(['group_id'])->create();
}
}