@bee-hole/server 1.35.0 → 1.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main.exe +0 -0
- package/mainD +0 -0
- package/package.json +1 -1
- package/storage/init/init.sql +2 -1
- package/storage/patch/patch.sql +1 -1
- package/version +1 -1
package/main.exe
CHANGED
|
Binary file
|
package/mainD
CHANGED
|
Binary file
|
package/package.json
CHANGED
package/storage/init/init.sql
CHANGED
|
@@ -9392,7 +9392,8 @@ ALTER TABLE `mall_association_tag_detail`
|
|
|
9392
9392
|
ALTER TABLE `mall_benefit_code`
|
|
9393
9393
|
ADD PRIMARY KEY (`id`),
|
|
9394
9394
|
ADD UNIQUE KEY `code` (`promotion_code`),
|
|
9395
|
-
ADD UNIQUE KEY `shopid,code,type` (`shop_id`,`promotion_code`,`benefit_type`) USING BTREE
|
|
9395
|
+
ADD UNIQUE KEY `shopid,code,type` (`shop_id`,`promotion_code`,`benefit_type`) USING BTREE,
|
|
9396
|
+
ADD KEY `discount` (`shop_id`,`benefit_type`,`effect_scope_type`,`id`,`activity_status`) USING BTREE;
|
|
9396
9397
|
|
|
9397
9398
|
--
|
|
9398
9399
|
-- 表的索引 `mall_benefit_code_order_items_logs`
|
package/storage/patch/patch.sql
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
ALTER TABLE `
|
|
1
|
+
ALTER TABLE `mall_benefit_code` ADD INDEX `discount` (`shop_id`, `benefit_type`, `effect_scope_type`, `id`, `activity_status`) USING BTREE ;
|
|
2
2
|
|
package/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.
|
|
1
|
+
v1.36.0
|