modified 添加数据库迁移脚本

This commit is contained in:
zhaoxiang 2019-05-08 18:28:18 +08:00
parent 963f57d7b9
commit b1ece57b69
2 changed files with 55 additions and 0 deletions

View File

@ -32,6 +32,7 @@ class AdminAuthGroupAccess extends Migrator {
$table->addColumn('uid', 'integer', [
'limit' => 11,
'default' => 0,
'signed' => false,
'comment' => ''
])->addColumn('groupId', 'string', [
'limit' => 255,

View File

@ -0,0 +1,54 @@
<?php
use think\migration\Migrator;
use think\migration\db\Column;
class AdminAuthRule 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_rule', [
'comment' => '权限细节'
])->setCollation('utf8mb4_general_ci');
$table->addColumn('url', 'string', [
'limit' => 80,
'default' => '',
'comment' => '规则唯一标识'
])->addColumn('groupId', 'integer', [
'limit' => 11,
'default' => 0,
'signed' => false,
'comment' => '权限所属组的ID'
])->addColumn('auth', 'integer', [
'limit' => 11,
'default' => 0,
'signed' => false,
'comment' => '权限数值'
])->addColumn('status', 'integer', [
'limit' => 1,
'default' => 1,
'comment' => '状态为1正常为0禁用'
])->create();
$table->changeColumn('id', 'integer', ['signed' => false]);
}
}