mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-08 23:18:18 -07:00
8 lines
142 B
Ruby
8 lines
142 B
Ruby
class District < ApplicationRecord
|
|
has_many :schools
|
|
|
|
validates :name, presence: true
|
|
|
|
scope :alphabetic, -> { order(name: :asc) }
|
|
|
|
end
|