Change database extension

This commit is contained in:
George Lacey 2022-04-11 10:02:21 +01:00
parent 1f5c2b9de6
commit aa4f31df23

View File

@ -80,7 +80,7 @@ WSGI_APPLICATION = 'borgweb.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'borg.sqlite', 'NAME': BASE_DIR / 'borg.db',
} }
} }