From 20061e9e5c3f9603891dbaeaca3d4bb36e06f136 Mon Sep 17 00:00:00 2001 From: Griatch Date: Tue, 19 Dec 2023 00:16:05 +0100 Subject: [PATCH] CI build: Different mysql testing db --- .github/workflows/mysql_settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mysql_settings.py b/.github/workflows/mysql_settings.py index 712eb3ec5f..8ad7a088a7 100644 --- a/.github/workflows/mysql_settings.py +++ b/.github/workflows/mysql_settings.py @@ -41,7 +41,7 @@ SERVERNAME = "testing_mygame" DATABASES = { "default": { "ENGINE": "django.db.backends.mysql", - "NAME": "evennia", + "NAME": "evennia1", "USER": "evennia", "PASSWORD": "password", "HOST": "127.0.0.1", @@ -51,7 +51,7 @@ DATABASES = { "init_command": "set collation_connection=utf8mb4_unicode_ci", }, "TEST": { - "NAME": "testdb", + "NAME": "evennia1", "OPTIONS": { "charset": "utf8mb4", "init_command": "set collation_connection=utf8mb4_unicode_ci",