Initial port to django-1.7
[sommitrealweird.git] / sommitrealweird / blog / models.py
index f76de3080a29322905960213437ff166333cba37..fa2e954f49e8319a031b93a3ea5174c758eab730 100644 (file)
@@ -10,7 +10,7 @@ FORMAT_CHOICES = (
 
 class BlogEntry(models.Model):
     title = models.CharField(max_length=150)
-    islive = models.BooleanField()
+    islive = models.BooleanField(default=False)
     sections = models.ManyToManyField('BlogSection')
     format = models.CharField(max_length=10, choices=FORMAT_CHOICES)
     slug = models.SlugField()