1
私は3モデル:Topic
,Post
,Link
があります。マルチレベル関連のためのcounter_cache
class Topic < ActiveRecord::Base
has_many :posts
end
class Post < ActiveRecord::Base
has_many :links
belongs_to :topic
end
class Link < ActiveRecord::Base
belongs_to :post
end
私はLink
モデルにフォーラムのcounter_cache
を持っているしたいと思います。 どうすればいいですか?