From bb3c368c8d327176e946de46d5c1f19907e6c75a Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Wed, 18 Aug 2021 22:32:11 +0200 Subject: chore: coallation better explained --- docs/sql-standards.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/sql-standards.md') diff --git a/docs/sql-standards.md b/docs/sql-standards.md index 135555d..1242b7d 100644 --- a/docs/sql-standards.md +++ b/docs/sql-standards.md @@ -169,10 +169,10 @@ We use UTF8MB4 where you would previously use UTF8 or UTF8MB3. (utf8 is an alias ``` utf8 -> utf8mb4 utf8mb3 -> utf8mb4 - -This also applies to utf8_unicode_ci etc. ``` +To be able to support MariaDB alongside MySQL we are limited to using `utf8mb4_general_ci` as coallation. + ### Check Constraints You can see [here](https://github.com/Azerothcore/azerothcore-wotlk/blob/master/data/sql/base/db_auth/realmlist.sql) how check contraints are made. -- cgit