From c1b43f742f7f3ec9c68165b2a3223d7dd25d32a1 Mon Sep 17 00:00:00 2001 From: Griatch Date: Mon, 22 Dec 2025 10:01:09 +0100 Subject: [PATCH] CI: mysql 8.0 doesn't support innodb_large_prefix anymore (again) --- .github/actions/run-tests/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/run-tests/action.yml b/.github/actions/run-tests/action.yml index e2d8d8e670..a841a2facb 100644 --- a/.github/actions/run-tests/action.yml +++ b/.github/actions/run-tests/action.yml @@ -70,7 +70,7 @@ runs: if: ${{ inputs.testing-db == 'mysql' }} run: | echo "Verifying MySQL server settings:" - mysql -u evennia -ppassword evennia -e "SELECT @@innodb_default_row_format as row_format, @@character_set_server as charset, @@collation_server as collation, @@innodb_large_prefix as large_prefix;" + mysql -u evennia -ppassword evennia -e "SELECT @@innodb_default_row_format as row_format, @@character_set_server as charset, @@collation_server as collation;" shell: bash - name: Run migrations