Added south app.
[wolnelektury.git] / apps / south / db / sqlite3.py
diff --git a/apps/south/db/sqlite3.py b/apps/south/db/sqlite3.py
new file mode 100644 (file)
index 0000000..6073b4d
--- /dev/null
@@ -0,0 +1,12 @@
+
+from django.db import connection
+from south.db import generic
+
+class DatabaseOperations(generic.DatabaseOperations):
+
+    """
+    SQLite3 implementation of database operations.
+    """
+
+    def __init__(self):
+        raise NotImplementedError("Support for SQLite3 is not yet complete.")
\ No newline at end of file