mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
8 lines
274 B
Ruby
8 lines
274 B
Ruby
module Dashboard
|
|
class Student < ApplicationRecord
|
|
has_many :student_races, class_name: "StudentRace", foreign_key: :dashboard_student_id
|
|
has_many :races, through: :student_races, foreign_key: :dashboard_race_id
|
|
|
|
encrypts :lasid, deterministic: true
|
|
end
|
|
end
|