Signed-off-by: mingsoft <killfen@126.com>
master
msgroup 2 years ago committed by mingsoft
parent 080e53d575
commit add5c1e421
  1. 42
      doc/5.3.4-up-5.3.5.sql
  2. 9
      doc/5.3.5-up-5.3.6.sql
  3. 57
      doc/mcms-5.3.6.sql
  4. 2
      src/main/resources/application-dev.yml

File diff suppressed because one or more lines are too long

@ -0,0 +1,9 @@
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `cms_content` MODIFY COLUMN `create_date` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间' ;
ALTER TABLE `app` MODIFY COLUMN `id` varchar(20) NOT NULL COMMENT '站点id';
ALTER TABLE `mdiy_model` MODIFY COLUMN `model_json` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT 'json';
ALTER TABLE `logger` MODIFY COLUMN `log_param` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '请求参数';
SET FOREIGN_KEY_CHECKS = 1;

File diff suppressed because one or more lines are too long

@ -1,6 +1,6 @@
spring:
datasource:
url: jdbc:mysql://localhost:3306/mcms?useUnicode=true&serverTimezone=Asia/Shanghai&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&allowMultiQueries=true&useSSL=true
url: jdbc:mysql://localhost:3306/mcms?useUnicode=true&serverTimezone=Asia/Shanghai&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&allowMultiQueries=true&useSSL=false
username: root
password: root
filters: wall,mergeStat

Loading…
Cancel
Save