From 0b759d6a321afd3d367fde0f68d8eb98251bed7b Mon Sep 17 00:00:00 2001 From: Col Crunch Date: Wed, 19 Jun 2019 16:27:18 -0400 Subject: [PATCH] Use utf8mb4 when creating auth db rather than utf8 --- docs/installation/auth/allianceauth.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/installation/auth/allianceauth.md b/docs/installation/auth/allianceauth.md index 54678859..9c3debd2 100644 --- a/docs/installation/auth/allianceauth.md +++ b/docs/installation/auth/allianceauth.md @@ -71,7 +71,7 @@ CentOS: Alliance Auth needs a MySQL user account and database. Open an SQL shell with `mysql -u root -p` and create them as follows, replacing `PASSWORD` with an actual secure password: CREATE USER 'allianceserver'@'localhost' IDENTIFIED BY 'PASSWORD'; - CREATE DATABASE alliance_auth CHARACTER SET utf8; + CREATE DATABASE alliance_auth CHARACTER SET utf8mb4; GRANT ALL PRIVILEGES ON alliance_auth . * TO 'allianceserver'@'localhost'; Add timezone tables to your mysql installation: