Created
November 24, 2014 11:33
-
-
Save shiroginne/176ef95de8b0222566c7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://guides.rubyonrails.org/association_basics.html#polymorphic-associations вот твой вариант только вместо pictures будет follower | |
class Follower | |
belongs_to :followeable, polymorphic: true | |
belongs_to :user | |
class User | |
has_many :followers, as: :followeable | |
class Topic | |
has_many :followers, as: :followeable | |
class Questions | |
has_many :followers, as: :followeable | |
schema.rb | |
---- | |
followers :id, followeable_id, followeable_type, user_id | |
users: :id | |
topics: :id | |
etc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment