class ChangeIdsOnSchools < ActiveRecord::Migration[6.0]
  def change
    change_table :Schools, bulk: true do |t|
      t.change :SchoolCode, :string, limit: 32, default: nil
      t.change :DistrictCode, :string, limit: 32, default: nil
    end
  end
end
