From 89be2456fb2d741b86417e889da9b6129525bec8 Mon Sep 17 00:00:00 2001 From: Col Crunch Date: Sun, 30 Jun 2019 22:58:13 -0400 Subject: [PATCH] Update local.py to have the utf8mb4 charset option enabled in the database settings. This brings the settings inline with the documentation update. --- allianceauth/project_template/project_name/settings/local.py | 1 + 1 file changed, 1 insertion(+) diff --git a/allianceauth/project_template/project_name/settings/local.py b/allianceauth/project_template/project_name/settings/local.py index 3d3b3a2d..786bf38c 100644 --- a/allianceauth/project_template/project_name/settings/local.py +++ b/allianceauth/project_template/project_name/settings/local.py @@ -30,6 +30,7 @@ DATABASES['default'] = { 'PASSWORD': '', 'HOST': '127.0.0.1', 'PORT': '3306', + 'OPTIONS': {'charset': 'utf8mb4'}, } # Register an application at https://developers.eveonline.com for Authentication