Update DB path for current DB

This commit is contained in:
derek holloway
2026-02-13 09:43:53 -08:00
parent d6b6fd96f7
commit 8de77b0491
+1 -1
View File
@@ -76,7 +76,7 @@ WSGI_APPLICATION = 'aisite.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3', 'NAME': BASE_DIR / '../data/appdata.db',
} }
} }