Files
premium/database/migrations/20211013152731_adminActionLog.php
2025-05-18 07:42:27 +00:00

32 lines
1.1 KiB
PHP
Executable File

<?php
use think\migration\Migrator;
class AdminActionLog extends Migrator
{
public function change()
{
$table = $this->table('admin_action_log', [
'engine' => 'InnoDB',
'comment' => '后台操作日志管理',
'collation' => 'utf8mb4_general_ci',
]);
//删除表
if ($table->exists()) {
$table->drop();
}
$table
->addColumn('admin_id', 'integer', ['limit' => 11, 'default' => '0', 'comment' => '登录者'])
->addColumn('rule', 'string', ['limit' => 255, 'default' => '', 'comment' => '路由规则'])
->addColumn('menu', 'string', ['limit' => 255, 'default' => '', 'comment' => '操作菜单'])
->addColumn('request_body', 'text', ['comment' => 'body参数'])
->addColumn('request_header', 'text', ['comment' => 'header参数'])
->addColumn('ip', 'string', ['limit' => 255, 'default' => '', 'comment' => 'ip'])
->addColumn('create_time', 'datetime', ['null' => 1, 'comment' => '创建时间'])
;
$table->create();
}
}