SQL脚本编码默认utf8mb4执行,避免小概率下容器环境中乱码问题;

This commit is contained in:
xuxueli 2020-01-19 17:13:00 +08:00
parent 90d705b468
commit 6a91bfa55c
2 changed files with 2 additions and 1 deletions

View File

@ -1688,6 +1688,7 @@ public ReturnT<String> execute(String param) {
### 6.28 版本 v2.2.0 Release Notes[迭代中]
- 1、[迭代中]调度中心升级springboot2.x因此系统要求JDK8+
- 2、执行器注册默认值优化
- 3、SQL脚本编码默认utf8mb4执行避免小概率下容器环境中乱码问题
### TODO LIST

View File

@ -5,7 +5,7 @@
CREATE database if NOT EXISTS `xxl_job` default character set utf8mb4 collate utf8mb4_unicode_ci;
use `xxl_job`;
SET NAMES UTF8;
SET NAMES utf8mb4;
CREATE TABLE `xxl_job_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,