【Ruby】Ruby on Rails Part10
レス数が950を超えています。1000を超えると書き込みができなくなります。
0987nobodyさん
2010/12/09(木) 14:36:08ID:???class User < ActiveRecord::Base
has_many :follows
has_many :followers, :through => :follows, :foreign_key => :follower_id, :class_name => 'User'
end
class Follow < ActiveRecord::Base
belongs_to :user
belongs_to :follower, :foreign_key => :follower_id, :class_name => 'User'
end
でいいと思う。
follwer と follwee のどっちがどっちだか分からなくなってきた。
レス数が950を超えています。1000を超えると書き込みができなくなります。