This commit is contained in:
Aevann1 2021-11-06 19:30:39 +02:00
parent 610b7d015a
commit cb69c30436
3 changed files with 14 additions and 15 deletions

View file

@ -42,8 +42,8 @@ class Comment(Base):
oauth_app = relationship("OauthApp", viewonly=True)
upvotes = Column(Integer, default=1)
downvotes = Column(Integer, default=0)
body = deferred(Column(String))
body_html = deferred(Column(String))
body = Column(String)
body_html = Column(String)
ban_reason = Column(String)
post = relationship("Submission", viewonly=True)