mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
10 lines
199 B
Ruby
10 lines
199 B
Ruby
class School < ApplicationRecord
|
|
has_many :schedules
|
|
has_many :recipient_lists
|
|
belongs_to :district
|
|
has_many :recipients
|
|
has_many :school_categories
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|