From 99229c7de86148034bc4d09feb574c2d0f827df0 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 22 Dec 2025 10:33:09 +0100 Subject: [PATCH] CI: Test setting mysql dynamic row format via django --- .github/workflows/mysql_settings.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mysql_settings.py b/.github/workflows/mysql_settings.py index 9fb4213a33..8001649041 100644 --- a/.github/workflows/mysql_settings.py +++ b/.github/workflows/mysql_settings.py @@ -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", ), }, },