diff --git a/app/models/posts.py b/app/models/posts.py index df336fb..9de6c96 100644 --- a/app/models/posts.py +++ b/app/models/posts.py @@ -7,7 +7,7 @@ class Post(db.Entity): title = Required(str, max_len=64) category = Required(str, max_len=20) banner = Optional(str, default='') - content = Required(LongStr) + content = Required(str) author = Required(str) timestamp = Required(int, unique=True)