From 79291e315ad59e075d55a95933ec34e29168788d Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 27 Jun 2024 19:45:57 +0200 Subject: [PATCH] Testing with utf8 encoding --- .github/workflows/mysql_settings.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/mysql_settings.py b/.github/workflows/mysql_settings.py index 7ffa74c347..3ffc8f1b7e 100644 --- a/.github/workflows/mysql_settings.py +++ b/.github/workflows/mysql_settings.py @@ -47,14 +47,14 @@ DATABASES = { "HOST": os.environ.get("MYSQL_HOST", "127.0.0.1"), "PORT": os.environ.get("MYSQL_PORT", "3306"), "OPTIONS": { - "charset": "utf8mb4", - "init_command": "set collation_connection=utf8mb4_unicode_ci", + "charset": "utf8", #"utf8mb4", + "init_command": "set collation_connection=utf8_unicode_ci", }, "TEST": { "NAME": "evennia", "OPTIONS": { - "charset": "utf8mb4", - "init_command": "set collation_connection=utf8mb4_unicode_ci", + "charset": "utf8", # "utf8mb4", + "init_command": "set collation_connection=utf8_unicode_ci", }, }, }