I'm currently learning RoR and this might be a simple question, but I don't know how to do it. I've just created a simple blog, following a tutorial, but I want to add a liking system, so that users can like(like on Youtube or Facebook) a certain blog post. How would I do that?
Here's what I've been thinking about: Add a new column to my database called "Likes" of type integer, put a Like button in my views. Add a method in my controller that would add 1 whenever someone clicked it. I'm not really sure if that's the way to do it, as I'm completely new to Ruby and Rails.