2 つのチームと 2 つのスコアを持つゲーム モデルを実装したいと思います。チームはプレイヤーのリストです。
class Game < ActiveRecord::Base
has_many :players, :name => 'Team1' # I'd like this to be the first team
has_many :players, :name => 'Team2' # and this to be the second team
attr_accessible :score1 #the first team's score
attr_accessible :score2 #the second team's score
end
class Player < ActiveRecord::Base
attr_accessible :name
end
これを実装するための解決策はありますか? これが可能かどうか/どのように可能かはわかりません。ありがとう!