update 优化 将Log记录参数长度扩充为5000更符合实际需求

This commit is contained in:
疯狂的狮子Li
2024-11-14 16:25:02 +08:00
parent 7a5e2ea6c3
commit 8fb2952a59
4 changed files with 13 additions and 13 deletions

View File

@@ -588,10 +588,10 @@ create table sys_oper_log (
oper_url varchar(255) default '' comment '请求URL',
oper_ip varchar(128) default '' comment '主机地址',
oper_location varchar(255) default '' comment '操作地点',
oper_param varchar(2000) default '' comment '请求参数',
json_result varchar(2000) default '' comment '返回参数',
oper_param varchar(5000) default '' comment '请求参数',
json_result varchar(5000) default '' comment '返回参数',
status int(1) default 0 comment '操作状态0正常 1异常',
error_msg varchar(2000) default '' comment '错误消息',
error_msg varchar(5000) default '' comment '错误消息',
oper_time datetime comment '操作时间',
cost_time bigint(20) default 0 comment '消耗时间',
primary key (oper_id),