mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Refs #373 -- Updated TupleIsNull lookup to check if any is NULL rather than all.
Regression in 1eac690d25.
This commit is contained in:
committed by
Sarah Boyce
parent
1857b6663b
commit
c2c7dbb2f8
@@ -49,7 +49,7 @@ class Group(models.Model):
|
||||
|
||||
class Membership(models.Model):
|
||||
# Table Column Fields
|
||||
membership_country = models.ForeignKey(Country, models.CASCADE)
|
||||
membership_country = models.ForeignKey(Country, models.CASCADE, null=True)
|
||||
date_joined = models.DateTimeField(default=datetime.datetime.now)
|
||||
invite_reason = models.CharField(max_length=64, null=True)
|
||||
person_id = models.IntegerField()
|
||||
|
||||
Reference in New Issue
Block a user