mirror of
https://github.com/django/django.git
synced 2025-09-10 12:36:40 +00:00
Refs #32096 -- Fixed ExclusionConstraint crash with JSONField key transforms in expressions.
Regression in 6789ded0a6
.
This commit is contained in:
parent
bbd55e5863
commit
ee0abac169
5 changed files with 26 additions and 1 deletions
|
@ -191,3 +191,4 @@ class HotelReservation(PostgreSQLModel):
|
|||
start = models.DateTimeField()
|
||||
end = models.DateTimeField()
|
||||
cancelled = models.BooleanField(default=False)
|
||||
requirements = models.JSONField(blank=True, null=True)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue