From 8411ed858c5d8881de36080d2fd5862e6a2a054f Mon Sep 17 00:00:00 2001 From: Gabor Guzmics Date: Mon, 4 Aug 2014 19:57:23 +0200 Subject: [PATCH] updated settings to generate an ignored .db file per default. --- dj/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dj/settings.py b/dj/settings.py index b3ea0eb..adec84c 100644 --- a/dj/settings.py +++ b/dj/settings.py @@ -66,7 +66,7 @@ WSGI_APPLICATION = 'dj.wsgi.application' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), + 'NAME': os.path.join(BASE_DIR, 'db.sqlite3.db'), } }