summaryrefslogtreecommitdiffstats
path: root/local_settings.py.example
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2012-03-24 15:17:54 -0500
committerDan McGee <dan@archlinux.org>2012-03-28 23:17:37 -0500
commitff5965f45db9e9e0c997f80c798417f3a71c848f (patch)
tree3407f68ddb464c8ae0dee59610fbc3275df2c700 /local_settings.py.example
parent23cb0d0956f31d855e0e06649998f724d97b0560 (diff)
downloadarchweb-ff5965f45db9e9e0c997f80c798417f3a71c848f.tar.gz
archweb-ff5965f45db9e9e0c997f80c798417f3a71c848f.zip
Switch to recommending PostgreSQL by default
Signed-off-by: Dan McGee <dan@archlinux.org>
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 37ac29a6..b8407d3e 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'},
},
}