I built a small twitter clone in Ruby on Rails. It has a User model, a Micropost model, and a Relationships model. The Relationships model stores followed user ids and corresponding following user ids. I am trying to add a new button that makes the current user follow all other users with a matching parameter in their microposts. I have added that parameter to the micropost model. The problem is, when I query the database in the micropost model to find users with that matching parameter it returnsI built a small twitter clone in Ruby on Rails.