From 8d668d4d9b627c82f573236b338f0c680f7fe057 Mon Sep 17 00:00:00 2001 From: weiweiw <14335254+weiweiw22@user.noreply.gitee.com> Date: Wed, 13 Nov 2024 17:30:13 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4sql?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sql/bns_20240604.sql | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sql/bns_20240604.sql b/sql/bns_20240604.sql index 005cc27..cf57c46 100644 --- a/sql/bns_20240604.sql +++ b/sql/bns_20240604.sql @@ -759,9 +759,12 @@ create table sys_logs ( method_type varchar(30) NULL DEFAULT NULL COMMENT '方法类型 POST/个体', title varchar(255) NULL DEFAULT NULL, result_data varchar(3000) NULL DEFAULT NULL COMMENT '返回数据', + warning_status char(1) NULL DEFAULT '1' NULL COMMENT'0未处理,1已处理' PRIMARY KEY (log_id) USING BTREE ) engine = innodb comment = '系统日志表' ; +ALTER TABLE sys_logs +ADD COLUMN warning_status CHAR(1) NULL DEFAULT '1' COMMENT '0未处理,1已处理'; -- ------------------------------ -- 21 Records of sys_logs_set -- ------------------------------