@bee-hole/server 2.4.7 → 2.5.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": "2.4.7",
3
+ "version": "2.5.0",
4
4
  "description": "www.bee-hole.com",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -40648,7 +40648,7 @@ ALTER TABLE `admin_good_cang_warehouse`
40648
40648
  --
40649
40649
  ALTER TABLE `admin_jiufang_shipping_method`
40650
40650
  ADD PRIMARY KEY (`id`),
40651
- ADD UNIQUE KEY `idx_code` (`code`),
40651
+ ADD UNIQUE KEY `idx_code` (`code`,`warehouse_code`) USING BTREE,
40652
40652
  ADD KEY `idx_warehouse_code` (`wms_id`);
40653
40653
 
40654
40654
  --
@@ -1,2 +1,4 @@
1
- SET @pid = (SELECT `id` FROM `admin_menu` WHERE `code` = 'cangku' LIMIT 1);
2
- UPDATE `admin_menu` SET `pid` = @pid WHERE `code` = 'warehouseRelation';
1
+ ALTER TABLE `admin_jiufang_shipping_method`
2
+ DROP INDEX `idx_code` ,
3
+ ADD UNIQUE INDEX `idx_code` (`code`, `warehouse_code`) USING BTREE ;
4
+
package/version CHANGED
@@ -1 +1 @@
1
- v2.4.7
1
+ v2.5.0