1
0
mirror of https://github.com/django/django.git synced 2025-10-24 22:26:08 +00:00

Complemented pickle test for ValuesQuerySet with related field

Refs #14515.
This commit is contained in:
Claude Paroz
2014-12-24 14:58:32 +01:00
parent 7ce9644d93
commit fae551d765
2 changed files with 6 additions and 0 deletions

View File

@@ -46,6 +46,7 @@ class Group(models.Model):
class Event(models.Model):
title = models.CharField(max_length=100)
group = models.ForeignKey(Group)