@bee-hole/server 1.34.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 +3 -2
- package/storage/patch/patch.sql +2 -5
- 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
|
@@ -4367,7 +4367,7 @@ CREATE TABLE `mall_webhook_logs` (
|
|
|
4367
4367
|
`id` bigint(20) UNSIGNED NOT NULL COMMENT '表主键',
|
|
4368
4368
|
`shop_id` bigint(20) NOT NULL COMMENT '店铺shop_id',
|
|
4369
4369
|
`order_id` varchar(64) NOT NULL COMMENT '商户订单号',
|
|
4370
|
-
`event_type` varchar(
|
|
4370
|
+
`event_type` varchar(20) NOT NULL COMMENT '事件类型',
|
|
4371
4371
|
`req_url` varchar(255) NOT NULL COMMENT '请求地址',
|
|
4372
4372
|
`payload` text COMMENT '消息载体',
|
|
4373
4373
|
`push_times` tinyint(4) NOT NULL COMMENT '推送次数',
|
|
@@ -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,5 +1,2 @@
|
|
|
1
|
-
ALTER TABLE `
|
|
2
|
-
|
|
3
|
-
ALTER TABLE `mall_goods` CHANGE `from_good_id` `from_good_id` VARCHAR(80) NULL DEFAULT NULL COMMENT '来源平台商品ID';
|
|
4
|
-
ALTER TABLE mall_webhook_logs ADD order_id varchar(64) NOT NULL COMMENT '商户订单号';
|
|
5
|
-
ALTER TABLE mall_webhook_logs CHANGE order_id order_id varchar(64) NOT NULL COMMENT '商户订单号' AFTER shop_id;
|
|
1
|
+
ALTER TABLE `mall_benefit_code` ADD INDEX `discount` (`shop_id`, `benefit_type`, `effect_scope_type`, `id`, `activity_status`) USING BTREE ;
|
|
2
|
+
|
package/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.
|
|
1
|
+
v1.36.0
|