I wanna to create a logic for like/dislike buttons
After watching some materials about this feature I understood I need to create a pivot table, but I am not sure If there an opportunity create one table for those 2 buttons
Should I create two separate pivot tables: recipe_likes & recipe_dislikes OR recipe_socials (with likes and dislikes inside)?
@Dmytro_Shved You should use a tiny integer column, and then 1 for likes or -1 for dislikes. That way, you can get the overall sentiment by summing the values.