1 Star 0 Fork 78

xiaotu996/laytp

forked from JunStar/laytp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
20211013152731_adminActionLog.php 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
JunStar 提交于 2022-01-18 20:12 . 2.0发版
<?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();
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/xiaotu996/laytp.git
git@gitee.com:xiaotu996/laytp.git
xiaotu996
laytp
laytp
2.1

搜索帮助