summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-01-31 20:20:49 +0100
committerDan McGee <dan@archlinux.org>2010-01-31 20:20:49 +0100
commit30073392a48d61b0d819d26b485460b166329cc2 (patch)
tree740d2b3d26dac8889ceba7f1be93851849f7de72 /settings.py
parentb48f5ae17ad6c1d6b446509a065678ffcfa13582 (diff)
downloadarchweb-30073392a48d61b0d819d26b485460b166329cc2.tar.gz
archweb-30073392a48d61b0d819d26b485460b166329cc2.tar.xz
Add initial South migration for 'main' app
Thanks to Evangelos Foutras for the inspiration. Recreated from scratch only to make sure everything is in sync. From this point on, you will need to have the 'south' Django/Python package installed to use archweb. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/settings.py b/settings.py
index 75d97aa..61ed067 100644
--- a/settings.py
+++ b/settings.py
@@ -81,6 +81,7 @@ INSTALLED_APPS = (
'todolists',
'devel',
'public',
+ 'south', # database migration support
)
# vim: set ts=4 sw=4 et: