mirror of
https://github.com/evennia/evennia.git
synced 2026-03-31 04:57:16 +02:00
default=0 for a boolean field? wtf batman. Left over from the early days. Fixed.
This commit is contained in:
parent
ee8bd34bb3
commit
b7ae985ef9
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue