DB: converted world database charset to utf8mb4

* reset charset of all string based columns to ensure that they all use the table's default char set
This commit is contained in:
Ovahlord
2020-09-13 23:08:54 +02:00
parent d606fa4688
commit 267008df00
2 changed files with 398 additions and 1 deletions

View File

@@ -2,7 +2,7 @@ CREATE USER 'trinity'@'localhost' IDENTIFIED BY 'trinity' WITH MAX_QUERIES_PER_H
GRANT USAGE ON * . * TO 'trinity'@'localhost';
CREATE DATABASE `world` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE DATABASE `world` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
CREATE DATABASE `characters` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;