mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
6 lines
256 B
Ruby
6 lines
256 B
Ruby
module Dashboard
|
|
class StudentRace < ApplicationRecord
|
|
belongs_to :student, optional: true, class_name: "Student", foreign_key: :dashboard_student_id
|
|
belongs_to :race, optional: true, class_name: "Race", foreign_key: :dashboard_race_id
|
|
end
|
|
end
|