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", }, }, }