From 4e2fa1bde0667b3390ca92bbff71a54105cbb432 Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 27 Jun 2024 19:37:35 +0200 Subject: [PATCH] More mysql adjustments --- .github/workflows/mysql_settings.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/mysql_settings.py b/.github/workflows/mysql_settings.py index 7541fa04cc..7ffa74c347 100644 --- a/.github/workflows/mysql_settings.py +++ b/.github/workflows/mysql_settings.py @@ -48,15 +48,15 @@ DATABASES = { "PORT": os.environ.get("MYSQL_PORT", "3306"), "OPTIONS": { "charset": "utf8mb4", -# "init_command": "set collation_connection=utf8mb4_unicode_ci", + "init_command": "set collation_connection=utf8mb4_unicode_ci", }, -# "TEST": { -# "NAME": "evennia", -# "OPTIONS": { -# "charset": "utf8mb4", -# "init_command": "set collation_connection=utf8mb4_unicode_ci", -# }, -# }, + "TEST": { + "NAME": "evennia", + "OPTIONS": { + "charset": "utf8mb4", + "init_command": "set collation_connection=utf8mb4_unicode_ci", + }, + }, } }