1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

[3.1.x] Fixed #31664 -- Reallowed using non-expressions having filterable attribute as rhs in queryset filters.

Regression in 4edad1ddf6.

Backport of b38d44229f from master
This commit is contained in:
Nicolas Baccelli
2020-06-05 21:01:39 +02:00
committed by Mariusz Felisiak
parent df9b9de6b0
commit 83749dca7a
4 changed files with 18 additions and 4 deletions

View File

@@ -77,6 +77,7 @@ class ExtraInfo(models.Model):
note = models.ForeignKey(Note, models.CASCADE, null=True)
value = models.IntegerField(null=True)
date = models.ForeignKey(DateTimePK, models.SET_NULL, null=True)
filterable = models.BooleanField(default=True)
class Meta:
ordering = ['info']