updated settings to generate an ignored .db file per default.

This commit is contained in:
Gabor Körber 2014-08-04 19:57:23 +02:00
parent 36c8914181
commit 8411ed858c

View File

@ -66,7 +66,7 @@ WSGI_APPLICATION = 'dj.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 'NAME': os.path.join(BASE_DIR, 'db.sqlite3.db'),
} }
} }