You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
educoder/db/migrate/20190518085626_add_index_to...

7 lines
313 B

6 years ago
class AddIndexToVerificatiojnCodes < ActiveRecord::Migration[5.2]
def change
add_index :verification_codes, [:phone], name: 'by_phone' if !index_exists?(:verification_codes, :phone)
add_index :verification_codes, [:email], name: 'by_email' if !index_exists?(:verification_codes, :email)
end
end