default=0 for a boolean field? wtf batman. Left over from the early days. Fixed.

This commit is contained in:
Greg Taylor 2009-04-17 01:47:14 +00:00
parent ee8bd34bb3
commit b7ae985ef9

View file

@ -12,7 +12,7 @@ class HelpEntry(models.Model):
"""
topicname = models.CharField(max_length=255, unique=True)
entrytext = models.TextField(blank=True, null=True)
staff_only = models.BooleanField(default=0)
staff_only = models.BooleanField(default=False)
objects = HelpEntryManager()