diff options
Diffstat (limited to 'django/db')
| -rw-r--r-- | django/db/backends/base/features.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index 2031beaf8a..e8fa82aa21 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -400,6 +400,9 @@ class BaseDatabaseFeatures: supports_on_delete_db_default = True supports_on_delete_db_null = True + # Does the backend support the inspectdb management command? + supports_inspectdb = True + # Collation names for use by the Django test suite. test_collations = { "ci": None, # Case-insensitive. |
