sqm-dashboards/db/migrate/20220211122234_add_is_hs_to_school.rb
rebuilt fcec3de233 Modify collection rate for admin data items. Take into account if a
school is a high school and if the admin data item is for high schools
only.  Finishes: #181154375.
2022-02-11 18:54:14 +01:00

5 lines
134 B
Ruby

class AddIsHsToSchool < ActiveRecord::Migration[7.0]
def change
add_column :schools, :is_hs, :boolean, default: false
end
end