From 0c69b69f28e8ed308a9974d0ab649f481d9bab3e Mon Sep 17 00:00:00 2001 From: "Adrian A. Baumann" Date: Sun, 28 Dec 2025 13:11:21 +0100 Subject: [PATCH] Data file moved to data/ --- labhelper/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/labhelper/settings.py b/labhelper/settings.py index c525dae..1a26172 100644 --- a/labhelper/settings.py +++ b/labhelper/settings.py @@ -76,7 +76,7 @@ WSGI_APPLICATION = 'labhelper.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': BASE_DIR / 'db.sqlite3', + 'NAME': BASE_DIR / 'data' / 'db.sqlite3', } }