@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 CHANGED
Binary file
package/mainD CHANGED
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bee-hole/server",
3
- "version": "1.35.0",
3
+ "version": "1.36.0",
4
4
  "description": "www.bee-hole.com",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -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`
@@ -1,2 +1,2 @@
1
- ALTER TABLE `mall_webhook_logs` MODIFY COLUMN event_type varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '事件类型';
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.35.0
1
+ v1.36.0