fix 修复 字段长度超出数据库限制问题

This commit is contained in:
疯狂的狮子Li
2024-11-26 15:38:22 +08:00
parent e78684886d
commit 1aff46bc1c
5 changed files with 18 additions and 18 deletions

View File

@ -2002,10 +2002,10 @@ CREATE TABLE sys_oper_log
oper_url nvarchar(255) DEFAULT '' NULL,
oper_ip nvarchar(128) DEFAULT '' NULL,
oper_location nvarchar(255) DEFAULT '' NULL,
oper_param nvarchar(5000) DEFAULT '' NULL,
json_result nvarchar(5000) DEFAULT '' NULL,
oper_param nvarchar(4000) DEFAULT '' NULL,
json_result nvarchar(4000) DEFAULT '' NULL,
status int DEFAULT ((0)) NULL,
error_msg nvarchar(5000) DEFAULT '' NULL,
error_msg nvarchar(4000) DEFAULT '' NULL,
oper_time datetime2(7) NULL,
cost_time bigint DEFAULT ((0)) NULL,
CONSTRAINT PK__sys_oper__34723BF9BD954573 PRIMARY KEY CLUSTERED (oper_id)