2017-07-12 28 views

答えて

2

Polymorphic Associations

class Comment < ApplicationRecord 
    belongs_to :commentable, polymorphic: true 
end 

class Article < ApplicationRecord 
    has_many :comments, as: :commentable 
end 

class Image < ApplicationRecord 
    has_many :comments, as: :commentable 
end 
に見て
関連する問題