Fixed #24525 -- Fixed AssertionError in some complex queries.

Thanks Anssi Kääriäinen for providing the solution.
This commit is contained in:
Tim Graham 2015-08-20 12:46:14 -04:00
parent e7b7f94678
commit 2dc9ec5616
4 changed files with 19 additions and 4 deletions

View file

@ -49,6 +49,7 @@ class Tag(models.Model):
class Note(models.Model):
note = models.CharField(max_length=100)
misc = models.CharField(max_length=10)
tag = models.ForeignKey(Tag, models.SET_NULL, blank=True, null=True)
class Meta:
ordering = ['note']