mirror of
https://github.com/django/django.git
synced 2025-08-06 20:08:20 +00:00
Fixed #20581 -- Added support for deferrable unique constraints.
This commit is contained in:
parent
555e3a848e
commit
c226c6cb32
14 changed files with 457 additions and 16 deletions
|
@ -56,6 +56,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
|
|||
supports_aggregate_filter_clause = True
|
||||
supported_explain_formats = {'JSON', 'TEXT', 'XML', 'YAML'}
|
||||
validates_explain_options = False # A query will error on invalid options.
|
||||
supports_deferrable_unique_constraints = True
|
||||
|
||||
@cached_property
|
||||
def is_postgresql_9_6(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue