From 25e7b81de9e73b60bdb0f3d8062c586ab41a90da Mon Sep 17 00:00:00 2001 From: luozukai Date: Thu, 10 Oct 2019 10:12:37 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E6=94=B9][=E6=89=8B=E7=BB=AD?= =?UTF-8?q?=E8=B4=B9][=E5=BC=80=E5=8F=91]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../migration/V201910101009__L_CONTRACT.sql | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mallinkAdmin/src/main/resources/db/migration/V201910101009__L_CONTRACT.sql diff --git a/mallinkAdmin/src/main/resources/db/migration/V201910101009__L_CONTRACT.sql b/mallinkAdmin/src/main/resources/db/migration/V201910101009__L_CONTRACT.sql new file mode 100644 index 000000000..65d71b0b1 --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V201910101009__L_CONTRACT.sql @@ -0,0 +1,20 @@ +alter table wx_bill_daily +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费'; + +alter table wx_bill_other +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费'; + +alter table wx_bill_other_deposit +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费'; + +alter table wx_bill_property +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费'; + +alter table wx_bill_property_deposit +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费'; + +alter table wx_bill_rent +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费'; + +alter table wx_bill_rent_deposit +add column `service_charge_pay` BIGINT (12) NULL DEFAULT 0 COMMENT '手续费费';