We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8692ebf commit 0a77805Copy full SHA for 0a77805
src/DotNetCore.CAP.MySql/IStorage.MySql.cs
@@ -69,7 +69,7 @@ protected virtual string CreateDbTablesScript(string prefix)
69
`ExpiresAt` datetime DEFAULT NULL,
70
`StatusName` varchar(50) NOT NULL,
71
PRIMARY KEY (`Id`)
72
-) ENGINE=InnoDB DEFAULT CHARSET=utf8;
+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
73
74
CREATE TABLE IF NOT EXISTS `{prefix}.published` (
75
`Id` bigint NOT NULL,
@@ -81,7 +81,7 @@ PRIMARY KEY (`Id`)
81
82
`StatusName` varchar(40) NOT NULL,
83
84
85
";
86
return batchSql;
87
}
0 commit comments