質問したいこと
has_many :microposts has_many :relationships has_many :followings, through: :relationships, source: :follow has_many :reverses_of_relationship, class_name: 'Relationship', foreign_key: 'follow_id' has_many :followers, through: :reverses_of_relationship, source: :user has_many :favorites has_many :likings, through: :favorites, source: :micropost has_many :reverses_of_favorite, class_name: "Favorite", foreign_key: "micropost_id" has_many :likers, through: :reverses_of_favorite, source: :user
教科書には文法の説明がないので質問しています。
僕の質問は(文法の質問です)
1 has_many 後ろここでいうmicroposts
は何ですか?(例えばモデルだとか、defで定義したものだとか)
2source の後ろも何がくるもかわかりません。
回答待ってます。
調べても出てきませんでしたので質問しました。
回答1件
あなたの回答
tips
プレビュー