X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/7d801e715b70774ff4f2a238045385e093701a8e..21f878e8112cf1f9b732a6dbb77e70efa68a01aa:/apps/south/db/sqlite3.py diff --git a/apps/south/db/sqlite3.py b/apps/south/db/sqlite3.py new file mode 100644 index 000000000..6073b4d4c --- /dev/null +++ b/apps/south/db/sqlite3.py @@ -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