class AddDisabilityDescriptorsToEdFiStatePrograms < ActiveRecord::Migration[6.0]
  def change
    change_table :ed_fi_state_programs, bulk: true do |t|
      t.column :disability_descriptor, :string, null: true
      t.column :disability_2_descriptor, :string, null: true
    end
  end
end
