diff options
Diffstat (limited to 'django/db/backends/base/features.py')
| -rw-r--r-- | django/db/backends/base/features.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/db/backends/base/features.py b/django/db/backends/base/features.py index 3417fdf1cd..bb4b59e7c8 100644 --- a/django/db/backends/base/features.py +++ b/django/db/backends/base/features.py @@ -181,6 +181,8 @@ class BaseDatabaseFeatures: # Does it support CHECK constraints? supports_column_check_constraints = True supports_table_check_constraints = True + # Does the backend support introspection of CHECK constraints? + can_introspect_check_constraints = True # Does the backend support 'pyformat' style ("... %(name)s ...", {'name': value}) # parameter passing? Note this can be provided by the backend even if not |
