mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
9 lines
169 B
Ruby
9 lines
169 B
Ruby
class School < ApplicationRecord
|
|
has_many :schedules
|
|
has_many :recipient_lists
|
|
belongs_to :district
|
|
has_many :recipients
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|