2012-03-04 16:51:35 +00:00
|
|
|
class Mash < ActiveRecord::Base
|
2012-03-11 04:28:55 +00:00
|
|
|
belongs_to :map_a, :class_name => 'Map'
|
|
|
|
belongs_to :map_b, :class_name => 'Map'
|
|
|
|
belongs_to :winner, :class_name => 'Map'
|
|
|
|
has_one :tournament, :class_name => 'MashTournament'
|
|
|
|
has_one :round, :class_name => 'MashTournamentRound'
|
2012-03-10 13:47:47 +00:00
|
|
|
|
2012-03-12 04:18:42 +00:00
|
|
|
named_scope :unplayed, :conditions => [%{
|
2012-03-10 13:47:47 +00:00
|
|
|
winner_id IS NULL
|
|
|
|
AND map_a_id IS NOT NULL
|
|
|
|
AND map_b_id IS NOT NULL
|
2012-03-12 04:18:42 +00:00
|
|
|
}]
|
2012-03-04 16:51:35 +00:00
|
|
|
end
|