1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-31 03:25:45 +00:00
Files
wrestlingdev.com/app/models/matchup.rb

9 lines
223 B
Ruby

class Matchup
attr_accessor :w1, :w2, :round, :weight_id, :boutNumber, :w1_name, :w2_name, :bracket_position, :bracket_position_number
def weight_max
@weight = Weight.find(self.weight_id)
return @weight.max
end
end