You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/db/migrate/20141004170135_update_auth_...

7 lines
212 B
Ruby

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