Models: * Person * Club
Relationships * Membership * Committee
People should be able to join a club (Membership) People should be able to be on the board of a club (Committee)
对于我的申请,这些内容大不相同,因此,我更倾向于不使用旗帜来设定(即船上——成员)或类似。
我想写一下:
People has_many :clubs :through => :membership # :as => :member? :foreign_key => :member_id? has_many :clubs :through => :committee # as (above)
但是,我并不真正确定如何共同协调这一点。