From e6e99d0b528188a4fcbe632e30353155b6fb43c6 Mon Sep 17 00:00:00 2001 From: QM303176530 <303176530@qq.com> Date: Thu, 6 Aug 2020 22:03:26 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9sys=5Foperation=5Frecords?= =?UTF-8?q?=E8=A1=A8=E7=9A=84body=E5=AD=97=E6=AE=B5=E5=92=8Cresp=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=E7=9A=84=E5=B1=9E=E6=80=A7=E4=B8=BAlongtext?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/db/qmplus.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/db/qmplus.sql b/server/db/qmplus.sql index 584fa6626..aa3a54697 100644 --- a/server/db/qmplus.sql +++ b/server/db/qmplus.sql @@ -614,9 +614,9 @@ CREATE TABLE `sys_operation_records` ( `latency` bigint(20) NULL DEFAULT NULL, `agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, `error_message` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL DEFAULT NULL, - `body` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT '请求Body', + `body` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT '请求Body', `user_id` int(11) NULL DEFAULT NULL COMMENT '用户id', - `resp` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT '响应Body', + `resp` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NULL COMMENT '响应Body', PRIMARY KEY (`id`) USING BTREE, INDEX `idx_sys_operation_records_deleted_at`(`deleted_at`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 342 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Compact;