From d91c0e4a87a1d22dbe561a695144004e6d0d1401 Mon Sep 17 00:00:00 2001 From: wujj <1027418825@qq.com> Date: Sat, 12 Dec 2020 10:01:00 +0800 Subject: [PATCH] =?UTF-8?q?sql=20=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- doc/mcms-5.2.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/mcms-5.2.sql b/doc/mcms-5.2.sql index aaa944a2..682314ff 100644 --- a/doc/mcms-5.2.sql +++ b/doc/mcms-5.2.sql @@ -186,9 +186,9 @@ COMMIT; DROP TABLE IF EXISTS `log`; CREATE TABLE `log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, - `log_error_msg` varchar(4000) DEFAULT NULL COMMENT '错误消息', - `log_result` varchar(4000) DEFAULT NULL COMMENT '返回参数', - `log_param` varchar(4000) DEFAULT NULL COMMENT '请求参数', + `log_error_msg` text DEFAULT NULL COMMENT '错误消息', + `log_result` text DEFAULT NULL COMMENT '返回参数', + `log_param` text DEFAULT NULL COMMENT '请求参数', `log_location` varchar(255) DEFAULT NULL COMMENT '所在地区', `log_user` varchar(255) DEFAULT NULL COMMENT '操作人员', `log_user_type` varchar(255) DEFAULT NULL COMMENT '用户类型',