Guest User

Untitled

a guest
Apr 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. team_results:
  2. id
  3. competition_id
  4. nation_id
  5. rank
  6. total
  7.  
  8.  
  9. team_jumper_results:
  10. id
  11. jumper_id
  12. team_result_id
  13. jump1
  14. points1
  15. jump2
  16. points2
  17.  
  18.  
  19. class TeamResult
  20. belongs_to :competition
  21. belongs_to :nation
  22. has_many :jumper_results, :foreign_key => "team_result_id"
  23. end
  24.  
  25. class JumperResult
  26. belongs_to :team_result, :foreign_key => "team_result_id"
  27. belongs_to :jumper, :class_name => "Member", :foreign_key => "jumper_id"
  28. end
Add Comment
Please, Sign In to add comment