7 lines
140 B
7 lines
140 B
5 years ago
|
class CompetitionCourseRecord < ApplicationRecord
|
||
|
belongs_to :competition
|
||
|
belongs_to :competition_team
|
||
|
|
||
|
serialize :snapshot, JSON
|
||
|
end
|