From e90e29130b5eb0af47ed9f9c3a5d9f0c545519a6 Mon Sep 17 00:00:00 2001 From: luozukai Date: Tue, 25 Jun 2019 16:27:44 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=AE=A1=E6=89=B9][=E4=BF=AE=E6=94=B9][?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=AE=A1=E6=89=B9=E6=B5=81]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../db/migration/V201906251622__L_ALTER_FLOW.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 mallinkAdmin/src/main/resources/db/migration/V201906251622__L_ALTER_FLOW.sql diff --git a/mallinkAdmin/src/main/resources/db/migration/V201906251622__L_ALTER_FLOW.sql b/mallinkAdmin/src/main/resources/db/migration/V201906251622__L_ALTER_FLOW.sql new file mode 100644 index 000000000..767dcfff9 --- /dev/null +++ b/mallinkAdmin/src/main/resources/db/migration/V201906251622__L_ALTER_FLOW.sql @@ -0,0 +1,8 @@ +ALTER TABLE `wx_coupon` +ADD COLUMN `put_apply_status` SMALLINT(1) NULL DEFAULT 0 COMMENT '投放审核状态0未审核1审核中2审核完成3驳回4异常终止5撤回'; + +ALTER TABLE `wx_coupon` +ADD COLUMN `stock_apply_status` SMALLINT(1) NULL DEFAULT 0 COMMENT '库存审核状态0未审核1审核中2审核完成3驳回4异常终止5撤回'; + +ALTER TABLE `wx_coupon` +ADD COLUMN `cancle_apply_status` SMALLINT(1) NULL DEFAULT 0 COMMENT '作废审核状态0未审核1审核中2审核完成3驳回4异常终止5撤回'; \ No newline at end of file