When you like/dislike a comment it calculates the like to dislike ratio (only if you have 10 dislikes or more so you don't get your comment hidden with just 1:5 likes to dislikes). If you have more than 80% dislikes your comment is hidden automatically. Open to tweaking these number.
Also ran this for reference:
ALTER
TABLE
public.contract_comments
ADD
COLUMN
dislikes int4
NULL
DEFAULT
0
;
ALTER
TABLE
public.contract_comments
DROP
COLUMN
upvotes,
DROP
COLUMN
downvotes;
When you like/dislike a comment it calculates the like to dislike ratio (only if you have 10 dislikes or more so you don't get your comment hidden with just 1:5 likes to dislikes). If you have more than 80% dislikes your comment is hidden automatically. Open to tweaking these number.
Also ran this for reference: