class AllowNullOnStudentsFields < ActiveRecord::Migration[6.0]
  def change
    change_table :Students, bulk: true do |t|
      t.change :ExtID, :string, null: true, limit: 32
      t.change :StateID, :string, null: true, limit: 32
    end
  end
end
