6073b4d4cca68851ab27b505ed1b43836c691bec
[wolnelektury.git] / apps / south / db / sqlite3.py
1
2 from django.db import connection
3 from south.db import generic
4
5 class DatabaseOperations(generic.DatabaseOperations):
6
7     """
8     SQLite3 implementation of database operations.
9     """
10
11     def __init__(self):
12         raise NotImplementedError("Support for SQLite3 is not yet complete.")