Opened 4 years ago
Closed 4 years ago
#31702 closed New feature (fixed)
Support operator classes for unique indexes on PostgreSQL.
Reported by: | Hannes Ljungberg | Owned by: | Hannes Ljungberg |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
UniqueConstraint
should allow setting opclasses
just like Index
:
class Meta: constraints = [ UniqueConstraint( name='test_ops_class', fields=['scene'], opclasses=['varchar_pattern_ops'], ) ]
Change History (6)
comment:1 by , 4 years ago
Has patch: | set |
---|
comment:2 by , 4 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 by , 4 years ago
Summary: | Allow specifying custom operator classes for PostgreSQL unique indexes → Support operator classes for unique indexes on PostgreSQL. |
---|
comment:5 by , 4 years ago
Triage Stage: | Accepted → Ready for checkin |
---|
Note:
See TracTickets
for help on using tickets.
PR: https://github.com/django/django/pull/13059