modified 添加数据库迁移脚本

This commit is contained in:
zhaoxiang 2019-05-08 18:10:44 +08:00
parent 8a1e0c7477
commit 963f57d7b9

View File

@ -0,0 +1,44 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
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.
*/
public function change() {
$table = $this->table('admin_auth_group_access', [
'comment' => '用户和组的对应关系'
])->setCollation('utf8mb4_general_ci');
$table->addColumn('uid', 'integer', [
'limit' => 11,
'default' => 0,
'comment' => ''
])->addColumn('groupId', 'string', [
'limit' => 255,
'default' => '',
'comment' => ''
])->addIndex(['uid'])->addIndex(['groupId'])->create();
$table->changeColumn('id', 'integer', ['signed' => false]);
}
}