From 859b2709c4536e8aa96f86f391042e158e1893bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Espino?= Date: Thu, 24 Oct 2013 17:25:32 +0200 Subject: [PATCH] Retorning to BooleanField (not NullBooleanField) on notifications mixin --- greenmine/base/notifications/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/greenmine/base/notifications/models.py b/greenmine/base/notifications/models.py index fecc17c0..28d871c5 100644 --- a/greenmine/base/notifications/models.py +++ b/greenmine/base/notifications/models.py @@ -20,7 +20,7 @@ class WatcherMixin(models.Model): default="all_owned_projects", choices=NOTIFY_LEVEL_CHOICES, verbose_name=_(u"notify level")) - notify_changes_by_me = models.NullBooleanField(null=True, blank=True, default=False, + notify_changes_by_me = models.BooleanField(blank=True, default=False, verbose_name=_(u"notify changes by me")) class Meta: