mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:23:25 +08:00
【新增】增加表【CoreCmsAppUpdateLog】版本更新表,用于发布版本更新。
【新增】增加安卓app版本在线更新功能。 【优化】优化app端头部导航按钮错位的问题。
This commit is contained in:
40
数据库/MySql/20220720/升级脚本/1、创建表脚本.sql
Normal file
40
数据库/MySql/20220720/升级脚本/1、创建表脚本.sql
Normal file
@@ -0,0 +1,40 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server : rm-wz92918pm46bsbc37mo.mysql.rds.aliyuncs.com
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 50732
|
||||
Source Host : rm-wz92918pm46bsbc37mo.mysql.rds.aliyuncs.com:3306
|
||||
Source Schema : coreshop
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 50732
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 20/07/2022 01:14:24
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for CoreCmsAppUpdateLog
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `CoreCmsAppUpdateLog`;
|
||||
CREATE TABLE `CoreCmsAppUpdateLog` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '序列',
|
||||
`version` int(11) NOT NULL COMMENT '版本号',
|
||||
`note` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '更新内容',
|
||||
`android` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '安卓地址',
|
||||
`ios` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'IOS地址',
|
||||
`addTime` timestamp(0) NOT NULL DEFAULT CURRENT_TIMESTAMP(0) ON UPDATE CURRENT_TIMESTAMP(0) COMMENT '创建时间',
|
||||
`isUpdate` tinyint(1) NOT NULL COMMENT '开启更新',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of CoreCmsAppUpdateLog
|
||||
-- ----------------------------
|
||||
INSERT INTO `CoreCmsAppUpdateLog` VALUES (1, 10, '测试更新内容', 'http://app.coreshop.cn/apk/coreshopandroid.apk', '', '0000-00-00 00:00:00', 1);
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
1
数据库/MySql/20220720/升级脚本/2、添加后台菜单链接数据.sql
Normal file
1
数据库/MySql/20220720/升级脚本/2、添加后台菜单链接数据.sql
Normal file
@@ -0,0 +1 @@
|
||||
INSERT INTO `SysMenu` VALUES (1388, 43, 'appupdatelog', '安卓苹果更新日志', NULL, 'system/appupdatelog/index', NULL, 0, 10, NULL, NULL, NULL, 0, 0, '2022-07-20 01:19:33', NULL);
|
||||
BIN
数据库/MySql/20220720/完整脚本/coreshop20220720带商品演示脚本aliyun导出.zip
Normal file
BIN
数据库/MySql/20220720/完整脚本/coreshop20220720带商品演示脚本aliyun导出.zip
Normal file
Binary file not shown.
BIN
数据库/MySql/20220720/完整脚本/coreshop20220720带商品演示脚本navicat导出.rar
Normal file
BIN
数据库/MySql/20220720/完整脚本/coreshop20220720带商品演示脚本navicat导出.rar
Normal file
Binary file not shown.
@@ -1,3 +1,6 @@
|
||||
2022-07-20
|
||||
【新增】新增表【CoreCmsAppUpdateLog】版本更新表,用于启动安卓app获取对应更新
|
||||
|
||||
2022-07-15
|
||||
【新增】表【CoreCmsGoods】增加【initialSales】初始销量字段,用于展示友好销量
|
||||
|
||||
|
||||
Reference in New Issue
Block a user