]> git.ozlabs.org Git - patchwork/blobdiff - apps/patchwork/models.py
Fix django-1.6 incompatibilities
[patchwork] / apps / patchwork / models.py
index 9de2a22d7e3fca857b53420fa597b781fd5b1bfb..a5f60cb8f94268a4aed8cb0ab9da937a574e9614 100644 (file)
@@ -55,7 +55,7 @@ class Project(models.Model):
     web_url = models.CharField(max_length=2000, blank=True)
     scm_url = models.CharField(max_length=2000, blank=True)
     webscm_url = models.CharField(max_length=2000, blank=True)
-    send_notifications = models.BooleanField()
+    send_notifications = models.BooleanField(default=False)
 
     def __unicode__(self):
         return self.name