Merge pull request #5210 from dataease/pr@dev@fixdataset

Pr@dev@fixdataset
This commit is contained in:
taojinlong 2023-05-15 12:34:48 +08:00 committed by GitHub
commit 608de0cb45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ public class MysqlDDLProvider extends DDLProviderImpl {
private static final String creatTableSql =
"CREATE TABLE IF NOT EXISTS `TABLE_NAME`" +
"Column_Fields;" ;
"Column_Fields" + " ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE utf8mb4_general_ci;" ;
@Override