How to remove index in rails
You don't supply the columns in the index when removing one. Try:
remove_index :completions, name: "index_completions_on_survey_id_and_user_id"
From rails console, run following
ActiveRecord::Migration.remove_index "completions", name: "index_completions_on_survey_id_and_user_id"