mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 09:20:38 -07:00
8 lines
227 B
Ruby
8 lines
227 B
Ruby
class AddExternalIdToQuestions < ActiveRecord::Migration[5.0]
|
|
def change
|
|
add_column :questions, :external_id, :string
|
|
add_column :school_categories, :year, :string
|
|
end
|
|
end
|
|
|
|
# SchoolCategory.update_all(year: '2017')
|