summaryrefslogtreecommitdiff
path: root/django/db/models/constraints.py
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34338 -- Allowed customizing code of ValidationError in BaseConstraint...Xavier Fernandez2023-02-231-11/+51
* Refs #33829 -- Added violation_error_message to constraints' __repr__().Xavier Fernandez2023-02-231-2/+14
* Fixed #34355 -- Deprecated passing positional arguments to BaseConstraint.Xavier Fernandez2023-02-221-3/+24
* Fixed #34291 -- Fixed Meta.constraints validation crash on UniqueConstraint w...Mariusz Felisiak2023-01-261-5/+7
* Refs #34233 -- Used types.NoneType.Nick Pope2023-01-181-3/+4
* Replaced Expression.replace_references() with .replace_expressions().Simon Charette2022-08-111-4/+7
* Fixed #33902 -- Fixed Meta.constraints validation crash with F() expressions.Mariusz Felisiak2022-08-091-3/+6
* Fixed #33829 -- Made BaseConstraint.deconstruct() and equality handle violati...Stéphane "Twidi" Angel2022-07-081-3/+17
* Fixed #30581 -- Added support for Meta.constraints validation.Gagaro2022-05-101-5/+87
* Made BaseConstraint importable from django.db.models.Gagaro2022-03-161-1/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-69/+82
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-2/+1
* Refs #32074 -- Used Enum.repr() format proposed for Python 3.10.Mariusz Felisiak2021-07-121-5/+3
* Refs #32779 -- Changed DatabaseSchemaEditor._unique_sql()/_create_unique_sql(...Hannes Ljungberg2021-05-281-2/+2
* Refs #32074 -- Backported Enum.__repr__() from Python 3.10.Mariusz Felisiak2021-04-071-1/+7
* Fixed #30916 -- Added support for functional unique constraints.Hannes Ljungberg2021-02-231-14/+64
* Fixed #32458 -- Made __repr__() for Index and BaseConstraint subclasses more ...Hannes Ljungberg2021-02-191-3/+9
* Fixed #31745 -- Added error messages when using UniqueConstraint.include/opcl...Hannes Ljungberg2020-06-291-0/+8
* Fixed #31702 -- Added support for PostgreSQL opclasses in UniqueConstraint.Hannes Ljungberg2020-06-161-4/+27
* Fixed #30913 -- Added support for covering indexes on PostgreSQL 11+.Hannes Ljungberg2020-06-041-5/+16
* Fixed #20581 -- Added support for deferrable unique constraints.Ian Foote2020-04-301-7/+35
* Fixed #30484 -- Added conditional expressions support to CheckConstraint.Simon Charette2019-11-211-0/+5
* Refs #11964 -- Removed SimpleCol in favor of Query(alias_cols).Simon Charette2019-11-211-2/+2
* Fixed #30651 -- Made __eq__() methods return NotImplemented for not implement...ElizabethU2019-10-011-11/+10
* Fixed #30062 -- Added support for unique conditional constraints.Paveł Tyślacki2019-01-121-6/+28
* Fixed #30060 -- Moved SQL generation for indexes and constraints to SchemaEdi...Paveł Tyślacki2019-01-011-32/+25
* Fixed #29641 -- Added support for unique constraints in Meta.constraints.Simon Charette2018-11-131-1/+37
* Refs #29641 -- Refactored database schema constraint creation.Simon Charette2018-11-131-8/+11
* Refs #29641 -- Extracted reusable CheckConstraint logic into a base class.Simon Charette2018-10-021-20/+33
* Refs #11964 -- Changed CheckConstraint() signature to use keyword-only argume...Simon Charette2018-10-021-6/+6
* Fixed #11964 -- Added support for database check constraints.Ian Foote2018-07-101-0/+54