mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
7 lines
181 B
Ruby
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
|