Added missing method in the dummy database backend.

This commit is contained in:
Aymeric Augustin 2013-03-07 14:53:52 +01:00
parent e2ee02c5bd
commit 25ce177e66
1 changed files with 3 additions and 0 deletions

View File

@ -71,3 +71,6 @@ class DatabaseWrapper(BaseDatabaseWrapper):
self.creation = DatabaseCreation(self) self.creation = DatabaseCreation(self)
self.introspection = DatabaseIntrospection(self) self.introspection = DatabaseIntrospection(self)
self.validation = BaseDatabaseValidation(self) self.validation = BaseDatabaseValidation(self)
def is_usable(self):
return True