discourse/db/migrate/20191025005204_amend_oauth2_user_info_index.rb
Sam Saffron 5ae35f9906 FIX: allow storage of non unique rows in oauth2_user_infos
Certain DBs have duplicates already, if we want to ensure uniqueness here
we need to decide first how to clean up existing data and confirm all the
plugins expect this.
2019-10-25 11:57:34 +11:00

10 lines
291 B
Ruby

# frozen_string_literal: true
class AmendOauth2UserInfoIndex < ActiveRecord::Migration[6.0]
def up
# remove old index which may have been unique
execute "DROP INDEX index_oauth2_user_infos_on_user_id_and_provider"
add_index :oauth2_user_infos, [:user_id, :provider]
end
end