Testing with utf8 encoding
This commit is contained in:
parent
4e2fa1bde0
commit
79291e315a
1 changed files with 4 additions and 4 deletions
8
.github/workflows/mysql_settings.py
vendored
8
.github/workflows/mysql_settings.py
vendored
|
|
@ -47,14 +47,14 @@ DATABASES = {
|
||||||
"HOST": os.environ.get("MYSQL_HOST", "127.0.0.1"),
|
"HOST": os.environ.get("MYSQL_HOST", "127.0.0.1"),
|
||||||
"PORT": os.environ.get("MYSQL_PORT", "3306"),
|
"PORT": os.environ.get("MYSQL_PORT", "3306"),
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"charset": "utf8mb4",
|
"charset": "utf8", #"utf8mb4",
|
||||||
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
"init_command": "set collation_connection=utf8_unicode_ci",
|
||||||
},
|
},
|
||||||
"TEST": {
|
"TEST": {
|
||||||
"NAME": "evennia",
|
"NAME": "evennia",
|
||||||
"OPTIONS": {
|
"OPTIONS": {
|
||||||
"charset": "utf8mb4",
|
"charset": "utf8", # "utf8mb4",
|
||||||
"init_command": "set collation_connection=utf8mb4_unicode_ci",
|
"init_command": "set collation_connection=utf8_unicode_ci",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue