asciinema.org/db/migrate/20141004170135_update_auth_codes_index.rb

7 lines
212 B
Ruby
Raw Normal View History

class UpdateAuthCodesIndex < ActiveRecord::Migration
def change
remove_index :auth_codes, name: "index_auth_codes_on_code_and_expires_at"
add_index :auth_codes, [:used_at, :expires_at, :code]
end
end