7 lines
186 B
Ruby
7 lines
186 B
Ruby
class AddGoogleOAuthFieldsIndex < ActiveRecord::Migration[6.1]
|
|
disable_ddl_transaction!
|
|
|
|
def change
|
|
add_index :users, :google_oauth2_username, algorithm: :concurrently
|
|
end
|
|
end
|