mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
CI: Test setting mysql dynamic row format via django
This commit is contained in:
parent
e846707461
commit
99229c7de8
1 changed files with 4 additions and 2 deletions
6
.github/workflows/mysql_settings.py
vendored
6
.github/workflows/mysql_settings.py
vendored
|
|
@ -53,7 +53,8 @@ DATABASES = {
|
|||
# variables that don't require special privileges.
|
||||
"init_command": (
|
||||
"SET collation_connection=utf8mb4_unicode_ci, "
|
||||
"sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1"
|
||||
"sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1",
|
||||
"innodb_default_row_format=DYNAMIC",
|
||||
),
|
||||
},
|
||||
"TEST": {
|
||||
|
|
@ -62,7 +63,8 @@ DATABASES = {
|
|||
"charset": "utf8mb4",
|
||||
"init_command": (
|
||||
"SET collation_connection=utf8mb4_unicode_ci, "
|
||||
"sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1"
|
||||
"sql_mode='STRICT_TRANS_TABLES', innodb_strict_mode=1",
|
||||
"innodb_default_row_format=DYNAMIC",
|
||||
),
|
||||
},
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue