rails, inverse_of の関連付け
名前をつけて関連付けたいです。
Article.xxx には Post.id が入っています。
以下の設定で、includesなどしたときに、
Could not find the inverse association for hoge_post (:articles in Post)
とエラーが出ます。どこが間違っているのでしょうか?
Post
has_many :custom_articles, inverse_of: :hoge_post, class_name:
'Article', foreign_key: 'xxx'Article
belongs_to :hoge_post, inverse_of: :articles, class_name: 'Post',
foreign_key: 'xxx'