mirror of
https://github.com/django/django.git
synced 2025-09-27 04:29:17 +00:00
Added missing method in the dummy database backend.
This commit is contained in:
parent
e2ee02c5bd
commit
25ce177e66
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue