@bee-hole/server 1.28.0 → 1.28.2
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/package.json +1 -1
- package/storage/patch/patch.sql +2 -4
- package/version +1 -1
package/package.json
CHANGED
package/storage/patch/patch.sql
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
ALTER TABLE `admin_syn_config`
|
|
2
|
-
|
|
3
|
-
DROP INDEX `shopId_syn_type` ,
|
|
4
|
-
ADD UNIQUE INDEX `shopId_syn_type` (`shop_id`, `syn_type`, `syn_idf`) USING BTREE;
|
|
1
|
+
ALTER TABLE `admin_syn_config` ADD COLUMN `syn_idf` int(1) NOT NULL DEFAULT 1 COMMENT '1=>商品,2=>订单' AFTER `syn_type`;
|
|
2
|
+
ALTER TABLE `xbuy`.`admin_syn_config` DROP INDEX `shopId_syn_type`, ADD UNIQUE `shopId_syn_type` (`shop_id`, `syn_type`, `syn_idf`) USING BTREE;
|
|
5
3
|
|
|
6
4
|
CREATE TABLE `admin_goods_public`
|
|
7
5
|
(
|
package/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v1.28.
|
|
1
|
+
v1.28.2
|