ALLHUBS-Jan-2024-Liftoff / Cherry-Systems

😄 Social media web app solving the loneliness epidemic
1 stars 4 forks source link

34 count of thumbs shows up on review #146

Closed Tinxte closed 3 weeks ago

Tinxte commented 3 weeks ago

Summary

You can test if display matches database by changing the vote count in MySQL!

Sample SQL commands to create upvotes and downvotes:

INSERT INTO submission_vote (submission_id, user_id, vote_type)
VALUES 
(1, 3, 'up');
INSERT INTO review_vote (review_id, user_id, vote_type)
VALUES
(3, 1, 'up');