mirror of https://github.com/django/django.git
Added missing method in the dummy database backend.
This commit is contained in:
parent
e2ee02c5bd
commit
25ce177e66
|
@ -71,3 +71,6 @@ class DatabaseWrapper(BaseDatabaseWrapper):
|
|||
self.creation = DatabaseCreation(self)
|
||||
self.introspection = DatabaseIntrospection(self)
|
||||
self.validation = BaseDatabaseValidation(self)
|
||||
|
||||
def is_usable(self):
|
||||
return True
|
||||
|
|
Loading…
Reference in New Issue