summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-08-18 22:32:11 +0200
committerGitHub <noreply@github.com>2021-08-18 22:32:11 +0200
commitbb3c368c8d327176e946de46d5c1f19907e6c75a (patch)
tree867f8bbf8a560714087a9a645018191dd2e2397b
parenta544abafde6b589420104c46c30e023e62f0fdb8 (diff)
downloadwiki-bb3c368c8d327176e946de46d5c1f19907e6c75a.tar.gz
wiki-bb3c368c8d327176e946de46d5c1f19907e6c75a.tar.bz2
wiki-bb3c368c8d327176e946de46d5c1f19907e6c75a.zip
chore: coallation better explained
-rw-r--r--docs/sql-standards.md4
1 files changed, 2 insertions, 2 deletions
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.