mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2026-03-24 18:27:21 +08:00
【调整】恢复2022年1月份以前的数据库升级脚本,方便开源版本用户,通过近30多次的数据库升级,近400次的代码迭代,可以无缝升级到专业版。
This commit is contained in:
Binary file not shown.
BIN
数据库/MySql/20220122/数据库升级脚本.rar
Normal file
BIN
数据库/MySql/20220122/数据库升级脚本.rar
Normal file
Binary file not shown.
@@ -1,44 +0,0 @@
|
||||
/*
|
||||
Navicat Premium Data Transfer
|
||||
|
||||
Source Server Type : MySQL
|
||||
Source Server Version : 50732
|
||||
Source Schema : coreshop
|
||||
|
||||
Target Server Type : MySQL
|
||||
Target Server Version : 50732
|
||||
File Encoding : 65001
|
||||
|
||||
Date: 22/01/2022 02:20:16
|
||||
*/
|
||||
|
||||
SET NAMES utf8mb4;
|
||||
SET FOREIGN_KEY_CHECKS = 0;
|
||||
|
||||
-- ----------------------------
|
||||
-- Table structure for CoreCmsOrderDistributionModel
|
||||
-- ----------------------------
|
||||
DROP TABLE IF EXISTS `CoreCmsOrderDistributionModel`;
|
||||
CREATE TABLE `CoreCmsOrderDistributionModel` (
|
||||
`id` int(11) NOT NULL COMMENT '序列',
|
||||
`orderType` int(11) NOT NULL COMMENT '订单类型',
|
||||
`description` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '描述',
|
||||
`isOpenMailing` tinyint(4) NOT NULL COMMENT '物流快递',
|
||||
`isOpenHomeDelivery` tinyint(4) NOT NULL COMMENT '同城配送',
|
||||
`isOpenSelfDelivery` tinyint(4) NOT NULL COMMENT '上门自提',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单配送模式' ROW_FORMAT = Dynamic;
|
||||
|
||||
-- ----------------------------
|
||||
-- Records of CoreCmsOrderDistributionModel
|
||||
-- ----------------------------
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (1, 1, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (2, 2, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (3, 3, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (4, 4, '', 1, 1, 0);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (5, 6, '', 0, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (6, 7, '', 1, 1, 0);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (7, 8, '', 1, 1, 1);
|
||||
INSERT INTO `CoreCmsOrderDistributionModel` VALUES (8, 10, '', 1, 0, 1);
|
||||
|
||||
SET FOREIGN_KEY_CHECKS = 1;
|
||||
@@ -1,4 +0,0 @@
|
||||
1、使用20220118版本完整数据库执行sql。
|
||||
2、后台菜单管理中,针对【下单模式设置】导入按钮。(存在按钮可不需要导入)
|
||||
3、角色添加权限。
|
||||
4、注销登录再次进入。
|
||||
Reference in New Issue
Block a user