This commit is contained in:
Aevann1 2022-01-22 15:04:30 +02:00
parent 2a4818177a
commit 6ec552c804
4 changed files with 5 additions and 13 deletions

View file

@ -43,7 +43,7 @@ class Comment(Base):
body = Column(String)
body_html = Column(String)
ban_reason = Column(String)
slots_result = Column(String, default="")
slots_result = Column(String)
post = relationship("Submission", viewonly=True)
author = relationship("User", primaryjoin="User.id==Comment.author_id")