Changes between Initial Version and Version 1 of Ticket #31440
- Timestamp:
- Apr 8, 2020, 1:32:14 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #31440 – Description
initial v1 1 1 The behaviour of deferrable constraints (e.g. Foreign Key, Unique) in a transaction can be modified using the `SET CONSTRAINTS` sql syntax (https://www.postgresql.org/docs/12/sql-set-constraints.html). Supporting this directly in Django will allow extra control over when `IntegrityError` is raised. 2 3 Related to #20581.