@bee-hole/server 1.29.1 → 1.29.3

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.29.1",
3
+ "version": "1.29.3",
4
4
  "description": "www.bee-hole.com",
5
5
  "main": "index.js",
6
6
  "directories": {
@@ -2979,7 +2979,7 @@ CREATE TABLE `mall_goods_sub` (
2979
2979
  `shop_id` bigint(20) NOT NULL COMMENT '所属门店',
2980
2980
  `view_id` bigint(20) NOT NULL COMMENT '所属视图',
2981
2981
  `cat_id` bigint(20) DEFAULT NULL COMMENT '所属类目',
2982
- `title` varchar(255) NOT NULL COMMENT '标题',
2982
+ `title` varchar(255) DEFAULT NULL COMMENT '标题',
2983
2983
  `sub_title` text COMMENT '副标题',
2984
2984
  `desc` longtext COMMENT '描述',
2985
2985
  `note` text COMMENT '备注',
@@ -1 +1,4 @@
1
1
  ALTER TABLE `mall_goods_sub` CHANGE `cat_id` `cat_id` BIGINT(20) NULL DEFAULT NULL COMMENT '所属类目';
2
+ ALTER TABLE `mall_goods_sub` CHANGE `title` `title` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '标题';
3
+
4
+
package/version CHANGED
@@ -1 +1 @@
1
- v1.29.1
1
+ v1.29.3