summaryrefslogtreecommitdiff
path: root/app/notes/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/notes/models.py')
-rw-r--r--app/notes/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notes/models.py b/app/notes/models.py
index 62b8992..a7ff599 100644
--- a/app/notes/models.py
+++ b/app/notes/models.py
@@ -37,7 +37,7 @@ class Note(models.Model):
state_name = models.CharField(max_length=250, null=True, blank=True)
country_name = models.CharField(max_length=150, null=True, blank=True)
body_html = models.TextField(blank=True)
- body_markdown = models.CharField('Note', max_length=450)
+ body_markdown = models.TextField('Note')
twitter_text = models.CharField('Twitter text', max_length=450, null=True, blank=True)
twitter_id = models.CharField('twitter_id', max_length=450)
twitter_send = models.BooleanField("send to twitter?", default=False)