mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Added missing method in the dummy database backend.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user