This commit is contained in:
Aevann1 2021-09-23 22:05:04 +02:00
parent c528ecc7fa
commit fb2165a0c6

View file

@ -20,7 +20,7 @@ class CommentAux(Base):
id = Column(Integer, ForeignKey("comments.id"))
body = deferred(Column(String(10000)))
body_html = deferred(Column(String(20000)))
ban_reason = Column(String(256), default='')
ban_reason = Column(String(256))
class Comment(Base):