diff --git a/zephyr/models.py b/zephyr/models.py index 1786747326..3862a08f08 100644 --- a/zephyr/models.py +++ b/zephyr/models.py @@ -270,6 +270,7 @@ class Subscription(models.Model): user_profile = models.ForeignKey(UserProfile) recipient = models.ForeignKey(Recipient) active = models.BooleanField(default=True) + in_home_view = models.NullBooleanField(default=True) class Meta: unique_together = ("user_profile", "recipient")