VIEW MORE

This commit is contained in:
Aevann1 2021-12-05 04:21:38 +02:00
parent 926e4ae6d5
commit 53ed768b3e
3 changed files with 11 additions and 0 deletions

View file

@ -33,6 +33,7 @@ class Comment(Base):
is_approved = Column(Integer, default=0)
level = Column(Integer, default=0)
parent_comment_id = Column(Integer, ForeignKey("comments.id"))
top_comment_id = Column(Integer)
over_18 = Column(Boolean, default=False)
is_bot = Column(Boolean, default=False)
is_pinned = Column(String)