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