From e754479e9c4ec7d371b7075bd73f7dbc577ac0d7 Mon Sep 17 00:00:00 2001 From: Zev Benjamin Date: Mon, 8 Apr 2013 11:29:33 -0400 Subject: [PATCH] [schema] Add notifications to Subscription model (imported from commit 4d6a7aa17f3fad4b6f8fb7a100b3b578446e3625) --- zephyr/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/zephyr/models.py b/zephyr/models.py index ad48a976cb..8d8ecbeb8e 100644 --- a/zephyr/models.py +++ b/zephyr/models.py @@ -340,6 +340,7 @@ class Subscription(models.Model): DEFAULT_STREAM_COLOR = "#c2c2c2" color = models.CharField(max_length=10, default=DEFAULT_STREAM_COLOR) + notifications = models.BooleanField(default=False) class Meta: unique_together = ("user_profile", "recipient")