Skip to content

Commit

Permalink
Make use of data path for integrated SQLite database
Browse files Browse the repository at this point in the history
  • Loading branch information
ohinckel committed Jul 28, 2024
1 parent e3c2a5a commit ea5cc06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framarama/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': BASE_DIR / 'db.sqlite3',
'NAME': BASE_DIR / 'data' / 'db.sqlite3',
},
}
DATABASE_ROUTERS = [
Expand Down

0 comments on commit ea5cc06

Please sign in to comment.