From 3030aabc1fda8880e2159183b41e2cd265482951 Mon Sep 17 00:00:00 2001 From: limqhz <540344226@qq.com> Date: Wed, 17 Jan 2024 16:15:56 +0800 Subject: [PATCH] =?UTF-8?q?=E8=84=9A=E6=9C=AC=E6=8F=90=E4=BA=A4=E8=AE=B0?= =?UTF-8?q?=E5=BD=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- other/sql/202312.sql | 2 +- other/sql/202401.sql | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 other/sql/202401.sql diff --git a/other/sql/202312.sql b/other/sql/202312.sql index 56cc9a0..dd0d2ec 100644 --- a/other/sql/202312.sql +++ b/other/sql/202312.sql @@ -23,7 +23,7 @@ CREATE TABLE `sv_member_enter_status` ( ) ENGINE=InnoDB AUTO_INCREMENT=1231 DEFAULT CHARSET=utf8mb4 COMMENT='用户在场馆的状态'; --- 20231228 待执行 +-- 20231228 ALTER TABLE sv_barcode ADD COLUMN order_sn varchar(200) AFTER barcode; ALTER TABLE `smart_venue`.`sv_barcode_order_time` diff --git a/other/sql/202401.sql b/other/sql/202401.sql new file mode 100644 index 0000000..289b187 --- /dev/null +++ b/other/sql/202401.sql @@ -0,0 +1,3 @@ +ALTER TABLE `smart_venue`.`sv_barcode_order_time` +MODIFY COLUMN `pay_money` int(11) NULL DEFAULT NULL COMMENT '当前退款金额' AFTER `paying`, +ADD COLUMN `sum_pay_money` int(11) NULL COMMENT '总退款金额' AFTER `pay_money`;