From 8a9130240f614e53d2565af4558e463648b9fb1a Mon Sep 17 00:00:00 2001 From: paulGao Date: Mon, 17 Oct 2022 14:29:12 +0800 Subject: [PATCH] fix: li_wholesale add column template_id --- init/mysql/lilishop.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/init/mysql/lilishop.sql b/init/mysql/lilishop.sql index e892404..93e549f 100644 --- a/init/mysql/lilishop.sql +++ b/init/mysql/lilishop.sql @@ -56225,6 +56225,7 @@ CREATE TABLE `li_wholesale` `price` decimal(10, 2) DEFAULT NULL COMMENT '价格', `goods_id` bigint DEFAULT NULL COMMENT '商品id', `sku_id` bigint DEFAULT NULL COMMENT '商品skuId', + `template_id` bigint DEFAULT NULL COMMENT '商品模版Id', `num` int DEFAULT NULL COMMENT '起购量', PRIMARY KEY (`id`) ) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_bin COMMENT '批发规则表';