Merge branch 'db_doc' into 'master'

Use utf8mb4 When Creating Auth DB

See merge request allianceauth/allianceauth!1130
This commit is contained in:
Basraah 2019-06-20 00:49:30 +00:00
commit bfd3451717

View File

@ -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: