mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
25 lines
730 B
PHP
25 lines
730 B
PHP
<?php
|
|
|
|
use think\migration\Migrator;
|
|
|
|
/**
|
|
* 系统-授权
|
|
*/
|
|
class SystemAuthNode extends Migrator
|
|
{
|
|
private $name = 'system_auth_node';
|
|
|
|
public function change()
|
|
{
|
|
// 创建数据表
|
|
$this->table($this->name, [
|
|
'engine' => 'InnoDB', 'collation' => 'utf8mb4_general_ci', 'comment' => '系统-授权',
|
|
])
|
|
->addColumn('auth', 'integer', ['limit' => 20, 'default' => 0, 'comment' => '角色'])
|
|
->addColumn('node', 'string', ['limit' => 200, 'default' => '', 'comment' => '节点'])
|
|
->addIndex('auth', ['name' => 'idx_system_auth_node_title'])
|
|
->addIndex('auth', ['name' => 'idx_system_auth_node_status'])
|
|
->save();
|
|
}
|
|
}
|