update db to postgres

Signed-off-by: Nico Schottelius <nico@wurzel.schottelius.org>
This commit is contained in:
Nico Schottelius 2015-05-14 01:22:20 +02:00
parent bba227428d
commit c3f24179fc
1 changed files with 2 additions and 3 deletions

View File

@ -79,12 +79,11 @@ WSGI_APPLICATION = 'dynamicweb.wsgi.application'
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'app',
}
}
# Internationalization
# https://docs.djangoproject.com/en/1.8/topics/i18n/