mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 04:03:57 -06:00
8 lines
171 B
Ruby
8 lines
171 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIndexToOauth2UserInfo < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_index :oauth2_user_infos, %i[user_id provider]
|
|
end
|
|
end
|