index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
contrib
/
postgres
/
constraints.py
Age
Commit message (
Expand
)
Author
2026-01-10
Fixed #36827 -- Added support for exclusion constraints using Hash indexes on...
Haki Benita
2026-01-08
Fixed #36852 -- Ignored index_type case in ExclusionConstraint equality check.
Haki Benita
2025-06-18
Fixed #32770 -- Added system check to ensure django.contrib.postgres is insta...
Clifford Gama
2025-03-10
Fixed #36222 -- Fixed ExclusionConstraint validation crash on excluded fields...
saJaeHyukc
2025-02-19
Fixed #35358, Refs #35234 -- Renamed _check() methods to check() for constrai...
Mariusz Felisiak
2024-09-09
Refs #373 -- Added Model._is_pk_set() abstraction to check if a Model's PK is...
Csirmaz Bendegúz
2024-08-12
Fixed #35575 -- Added support for constraint validation on GeneratedFields.
Mark Gensler
2024-08-05
Refs #35638 -- Avoided wrapping expressions with Value in _get_field_value_ma...
David Sanders
2024-05-27
Fixed #35479 -- Dropped support for PostgreSQL 13 and PostGIS 3.0.
Mariusz Felisiak
2024-05-14
Fixed #35275 -- Fixed Meta.constraints validation crash on UniqueConstraint w...
Mariusz Felisiak
2024-02-29
Fixed #35234 -- Added system checks for invalid model field names in Exclusio...
Simon Charette
2023-02-23
Fixed #34338 -- Allowed customizing code of ValidationError in BaseConstraint...
Xavier Fernandez
2023-02-23
Refs #33829 -- Added violation_error_message to constraints' __repr__().
Xavier Fernandez
2023-01-18
Refs #34233 -- Used types.NoneType.
Nick Pope
2023-01-17
Refs #33342 -- Removed ExclusionConstraint.opclasses per deprecation timeline.
Mariusz Felisiak
2022-11-10
Fixed #34149 -- Allowed adding deferrable conditional exclusion constraints o...
Márton Salomváry
2022-08-11
Replaced Expression.replace_references() with .replace_expressions().
Simon Charette
2022-08-11
Optimized ExclusionConstraint.validate() a bit.
Mariusz Felisiak
2022-08-11
Used F.replace_references().
Mariusz Felisiak
2022-07-08
Fixed #33829 -- Made BaseConstraint.deconstruct() and equality handle violati...
Stéphane "Twidi" Angel
2022-05-19
Fixed #33717 -- Dropped support for PostgreSQL 11.
Mariusz Felisiak
2022-05-10
Fixed #30581 -- Added support for Meta.constraints validation.
Gagaro
2022-03-16
Made BaseConstraint importable from django.db.models.
Gagaro
2022-02-07
Refs #33476 -- Refactored code to strictly match 88 characters line length.
Mariusz Felisiak
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2021-12-27
Refs #33342 -- Deprecated ExclusionConstraint.opclasses.
Hannes Ljungberg
2021-12-24
Fixed #33342 -- Added support for using OpClass() in exclusion constraints.
Hannes Ljungberg
2021-10-01
Refs #32943 -- Added support for covering exclusion constraints using SP-GiST...
Nick Pope
2021-10-01
Fixed typo in exception message for GiST indexes and exclusion constraints.
Nick Pope
2021-06-22
Fixed #32858 -- Fixed ExclusionConstraint crash with index transforms in expr...
Lucidiot
2021-04-07
Refs #32074 -- Made ExclusionConstraint.__repr__() use Deferrable.__repr__().
Mariusz Felisiak
2021-02-19
Fixed #32458 -- Made __repr__() for Index and BaseConstraint subclasses more ...
Hannes Ljungberg
2020-10-14
Refs #32096 -- Fixed ExclusionConstraint crash with JSONField key transforms ...
Mariusz Felisiak
2020-08-19
Fixed #31902 -- Fixed crash of ExclusionConstraint on expressions with params.
Maxim Petrov
2020-06-16
Fixed #31709 -- Added support for opclasses in ExclusionConstraint.
Hannes Ljungberg
2020-06-12
Fixed #31649 -- Added support for covering exclusion constraints on PostgreSQ...
Hannes Ljungberg
2020-05-01
Fixed #31455 -- Added support for deferrable exclusion constraints on Postgre...
Ian Foote
2019-11-21
Refs #11964 -- Removed SimpleCol in favor of Query(alias_cols).
Simon Charette
2019-10-01
Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...
ElizabethU
2019-07-16
Fixed #29824 -- Added support for database exclusion constraints on PostgreSQL.
Mads Jensen