From 6224768f2dee7349082127b7c89a14bf68a18ddf Mon Sep 17 00:00:00 2001 From: Horilla Date: Tue, 11 Nov 2025 15:32:29 +0530 Subject: [PATCH] [FIX] SETTINGS: Fixed db name from db.sqlite3 to TestDB.sqlite3 --- horilla/settings/base.py | 2 +- horilla/settings/local_settings.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/horilla/settings/base.py b/horilla/settings/base.py index 525779665..47cf94af9 100644 --- a/horilla/settings/base.py +++ b/horilla/settings/base.py @@ -156,7 +156,7 @@ else: DATABASES = { "default": { "ENGINE": env("DB_ENGINE", default="django.db.backends.sqlite3"), - "NAME": env("DB_NAME", default=os.path.join(BASE_DIR, "db.sqlite3")), + "NAME": env("DB_NAME", default=os.path.join(BASE_DIR, "TestDB.sqlite3")), "USER": env("DB_USER", default=""), "PASSWORD": env("DB_PASSWORD", default=""), "HOST": env("DB_HOST", default=""), diff --git a/horilla/settings/local_settings.py b/horilla/settings/local_settings.py index 07ccbecb1..7abf8025b 100644 --- a/horilla/settings/local_settings.py +++ b/horilla/settings/local_settings.py @@ -2,6 +2,7 @@ Custom client-specific overrides. This file is intentionally empty by default and should NOT be tracked by Git. """ + from .base import * # # --- 1️⃣ Basic overrides --- @@ -27,4 +28,4 @@ from .base import * # # --- 4️⃣ Override any other settings if needed --- # TIME_ZONE = "Europe/Berlin" -# LANGUAGE_CODE = "de" \ No newline at end of file +# LANGUAGE_CODE = "de"