mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
7 lines
199 B
Ruby
7 lines
199 B
Ruby
class Student < ApplicationRecord
|
|
has_many :survey_item_responses
|
|
has_many :student_races
|
|
has_and_belongs_to_many :races, join_table: :student_races
|
|
|
|
encrypts :lasid, deterministic: true
|
|
end
|