diff options
Diffstat (limited to 'app/gtd/models.py')
-rw-r--r-- | app/gtd/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/gtd/models.py b/app/gtd/models.py index af6ca69..e74c33a 100644 --- a/app/gtd/models.py +++ b/app/gtd/models.py @@ -97,7 +97,7 @@ class NoteType(models.IntegerChoices): class GTDNote(models.Model): title = models.CharField(max_length=200) - body_markdown = models.TextField() + body_markdown = models.TextField(null=True, blank=True) body_html = models.TextField(blank=True) date_completed = models.DateField(null=True, blank=True) date_created = models.DateTimeField(auto_now=True) |