summaryrefslogtreecommitdiffstats
path: root/local_settings.py.example
diff options
context:
space:
mode:
Diffstat (limited to 'local_settings.py.example')
-rw-r--r--local_settings.py.example5
1 files changed, 2 insertions, 3 deletions
diff --git a/local_settings.py.example b/local_settings.py.example
index 37ac29a..b8407d3 100644
--- a/local_settings.py.example
+++ b/local_settings.py.example
@@ -13,16 +13,15 @@ ADMINS = (
# ('Joe Admin', 'joeadmin@example.com'),
)
-## MySQL Database settings
+## PostgreSQL Database settings
DATABASES = {
'default': {
- 'ENGINE' : 'django.db.backends.mysql',
+ 'ENGINE' : 'django.db.backends.postgresql_psycopg2',
'NAME' : 'archlinux',
'USER' : 'archlinux',
'PASSWORD': 'archlinux',
'HOST' : '',
'PORT' : '',
- 'OPTIONS' : {'init_command': 'SET storage_engine=InnoDB'},
},
}