mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
9 lines
254 B
Ruby
9 lines
254 B
Ruby
module Dashboard
|
|
class Student < ApplicationRecord
|
|
# has_many :dashboard_survey_item_responses
|
|
has_many :dashboard_student_races
|
|
has_and_belongs_to_many :races, join_table: :student_races
|
|
|
|
encrypts :lasid, deterministic: true
|
|
end
|
|
end
|