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