There are a number of posts and threads on has_many :through, but I haven\'t found any that cover specifically what I\'m trying to do.
I have a User model and a Fri
I'm kind of a noob in a learning process, but this models seem cleaner to me:
class User < ActiveRecord::Base
has_many :followings
has_many :followers, through: :followings
end
class Following < ActiveRecord::Base
belongs_to :user
belongs_to :follower, class_name: 'User'
end