From b437044cc2e9d9ba5f04d21efb23c108930a4628 Mon Sep 17 00:00:00 2001 From: fireworks88 Date: Tue, 27 Jul 2021 13:07:00 +0200 Subject: [PATCH] sneed --- drama/classes/comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drama/classes/comment.py b/drama/classes/comment.py index 6ac863950..8a93e34b2 100644 --- a/drama/classes/comment.py +++ b/drama/classes/comment.py @@ -67,7 +67,7 @@ class Comment(Base, Age_times, Scores, Stndrd, Fuzzing): parent_comment = relationship("Comment", remote_side=[id]) child_comments = relationship("Comment", remote_side=[parent_comment_id]) - #awards = relationship("AwardRelationship", lazy="joined") + awards = relationship("AwardRelationship", lazy="joined") # These are virtual properties handled as postgres functions server-side # There is no difference to SQLAlchemy, but they cannot be written to