From ffebc53bf8933659b2da03006450c11c14c50183 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Wed, 22 Sep 2021 18:52:54 +0200 Subject: [PATCH] fd --- files/classes/comment.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/files/classes/comment.py b/files/classes/comment.py index d1f116452..2c0b53962 100644 --- a/files/classes/comment.py +++ b/files/classes/comment.py @@ -31,8 +31,6 @@ class Comment(Base): comment_aux = relationship("CommentAux", uselist=False, primaryjoin="Comment.id==CommentAux.id") author_id = Column(Integer, ForeignKey("users.id")) parent_submission = Column(Integer, ForeignKey("submissions.id")) - # this column is foreignkeyed to comment(id) but we can't do that yet as - # "comment" class isn't yet defined created_utc = Column(Integer, default=0) edited_utc = Column(Integer, default=0) is_banned = Column(Boolean, default=False)