You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Updating tables to handle Special UTF8 characters(like emoji characters.)
266
+
Logger.LogWarning("Updating Playerinfo DB to version: "+updatingVersion);
267
+
command.CommandText="ALTER TABLE `"+Table+"` MODIFY `SteamName` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, MODIFY `CharName` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL;"+
268
+
"ALTER TABLE `"+TableInstance+"` MODIFY `ServerInstance` VARCHAR(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL, MODIFY `ServerName` VARCHAR(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL;"+
269
+
"REPAIR TABLE `"+Table+"`, `"+TableInstance+"`;"+
270
+
"UPDATE `"+TableConfig+"` SET `value` = '4' WHERE `key` = 'version';";
0 commit comments