Set null to true

remotes/origin/enhancement/email-actions
David Barragán Merino 2013-10-16 13:43:21 +02:00
parent 53520b9f80
commit 7df1762d29
1 changed files with 4 additions and 3 deletions

View File

@ -17,10 +17,11 @@ class WatcherMixin(object):
)
notify_level = models.CharField(max_length=32, null=False, blank=False,
default="all_owned_projects", choices=NOTIFY_LEVEL_CHOICES,
default="all_owned_projects",
choices=NOTIFY_LEVEL_CHOICES,
verbose_name=_(u"notify level"))
notify_changes_by_me = models.BooleanField(null=False, blank=True, default=True,
verbose_name=_(u"notify changes made by me"))
notify_changes_by_me = models.BooleanField(null=True, blank=True, default=True,
verbose_name=_(u"notify changes by me"))
class Meta:
abstract = True