1 Star 0 Fork 78

xiaotu996/laytp

forked from JunStar/laytp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
20211229222231_apiLog.php 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
JunStar 提交于 2022-01-18 20:12 . 2.0发版
<?php
use think\migration\Migrator;
class ApiLog extends Migrator
{
public function change()
{
$table = $this->table('api_log', [
'engine' => 'InnoDB',
'comment' => 'Api请求日志管理',
'collation' => 'utf8mb4_general_ci',
]);
//删除表
if ($table->exists()) {
$table->drop();
}
$table
->addColumn('rule', '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('status_code', 'string', ['limit' => 255, 'default' => '', 'comment' => '返回状态码'])
->addColumn('response_body', 'string', ['limit' => 255, 'default' => '', 'comment' => '返回内容'])
->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

搜索帮助