From 4d210606de9e089ef76cf7e2f4da60df9b7357a6 Mon Sep 17 00:00:00 2001 From: buke <1312023945@qq.com> Date: Thu, 24 Oct 2024 18:19:08 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BC=B4=E8=B4=B9=E7=8A=B6=E6=80=81=E4=BB=A5?= =?UTF-8?q?=E5=8F=8A=E5=90=88=E5=90=8C=E7=AD=BE=E7=BD=B2=E7=8A=B6=E6=80=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 1729760969_change_table_orders.up.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 1729760969_change_table_orders.up.sql diff --git a/1729760969_change_table_orders.up.sql b/1729760969_change_table_orders.up.sql new file mode 100644 index 0000000..be4fcf7 --- /dev/null +++ b/1729760969_change_table_orders.up.sql @@ -0,0 +1,4 @@ +ALTER TABLE `ufutx_orders` +ADD COLUMN `check_pay_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '确认缴费 0:未确认 1:已确认' AFTER `invite_name`, +ADD COLUMN `check_pay_img` text NULL COMMENT '确认缴费凭证' AFTER `check_pay_status`, +ADD COLUMN `check_sign_status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '确认合同签署 0:未确认 1:已确认' AFTER `check_pay_img`; \ No newline at end of file