Added south app.
[wolnelektury.git] / apps / south / db / __init__.py
diff --git a/apps/south/db/__init__.py b/apps/south/db/__init__.py
new file mode 100644 (file)
index 0000000..8e4d773
--- /dev/null
@@ -0,0 +1,12 @@
+
+# Establish the common DatabaseOperations instance, which we call 'db'.
+# This code somewhat lifted from django evolution
+from django.conf import settings
+import sys
+module_name = ['south.db', settings.DATABASE_ENGINE]
+try:
+    module = __import__('.'.join(module_name),{},{},[''])
+except ImportError:
+    sys.stderr.write("There is no South database module for the engine '%s'. Please either choose a supported one, or remove South from INSTALLED_APPS.\n" % settings.DATABASE_ENGINE)
+    sys.exit(1)
+db = module.DatabaseOperations()
\ No newline at end of file