Retorning to BooleanField (not NullBooleanField) on notifications mixin

remotes/origin/enhancement/email-actions
Jesús Espino 2013-10-24 17:25:32 +02:00
parent b6b0d7b00e
commit 859b2709c4
1 changed files with 1 additions and 1 deletions

View File

@ -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: