Remove treasure rewards for comments.

Given that coins are not visible in many contexts, the conspicuous
appearance of treasure chests (random coin rewards on 1% of comments)
seems out of place. This removes the logic which rewards treasure,
the visible display of treasure, and drops the column containing
treasure information which has already been awarded to at least one
comment on prod.
This commit is contained in:
TLSM 2022-09-04 17:55:45 -04:00 committed by Ben Rog-Wilhelm
parent cccb26cb3f
commit e12b0eea1a
7 changed files with 28 additions and 47 deletions

View file

@ -47,7 +47,6 @@ class Comment(Base):
slots_result = Column(String)
blackjack_result = Column(String)
wordle_result = Column(String)
treasure_amount = Column(String)
filter_state = Column(String, nullable=False)
Index('comment_parent_index', parent_comment_id)