You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bbenezech edited this page Dec 26, 2012
·
4 revisions
Synopsys:
classTeam < ActiveRecord::Basehas_many:players,:dependent=>:destroy,:inverse_of=>:team# for a nested form: (natural choice for 1-n associations)accepts_nested_attributes_for:players,:allow_destroy=>trueattr_accessible:players_attributes,:allow_destroy=>true# for a multiselect widget:attr_accessible:player_idsrails_admindoconfigure:playersdo# configuration hereendendend# for infoclassPlayer < ActiveRecord::Basebelongs_to:team,:inverse_of=>:playersend