diff options
| -rw-r--r-- | examples/djangoproject/djangoproject/settings.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/examples/djangoproject/djangoproject/settings.py b/examples/djangoproject/djangoproject/settings.py index acd56b1..0361033 100644 --- a/examples/djangoproject/djangoproject/settings.py +++ b/examples/djangoproject/djangoproject/settings.py @@ -8,8 +8,8 @@ TEMPLATE_DEBUG = DEBUG  DATABASES = {      'default': { -        'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. -        'NAME': '',                      # Or path to database file if using sqlite3. +        'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. +        'NAME': 'development.sqlite3',                      # Or path to database file if using sqlite3.          'USER': '',                      # Not used with sqlite3.          'PASSWORD': '',                  # Not used with sqlite3.          'HOST': '',                      # Set to empty string for localhost. Not used with sqlite3. | 
