mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
8 lines
147 B
Ruby
8 lines
147 B
Ruby
class School < ApplicationRecord
|
|
has_many :recipient_lists
|
|
belongs_to :district
|
|
has_many :recipients
|
|
|
|
validates :name, presence: true
|
|
|
|
end
|