mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 13:38:18 -08:00
school is a high school and if the admin data item is for high schools only. Finishes: #181154375.
5 lines
134 B
Ruby
5 lines
134 B
Ruby
class AddIsHsToSchool < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :schools, :is_hs, :boolean, default: false
|
|
end
|
|
end
|