Open aaronpk opened 7 years ago
The SELECT * FROM comment, user query was resulting in the user.created_at field being found when trying to show the comment's created_at. This change overrides the created_at result to select from the comment table instead.
SELECT * FROM comment, user
user.created_at
created_at
@aaronpk @waxpancake would love to see this and #47 merged! I know it's been a while, but the people still need Upcoming! 💗
The
SELECT * FROM comment, user
query was resulting in theuser.created_at
field being found when trying to show the comment'screated_at
. This change overrides thecreated_at
result to select from the comment table instead.