sqm-dashboards/app/models/student.rb
2022-07-29 15:34:56 -07:00

7 lines
181 B
Ruby

class Student < ApplicationRecord
has_many :survey_item_responses
has_many :student_races
has_many :races, through: :student_races
encrypts :lasid, deterministic: true
end