6 lines
162 B
Ruby
6 lines
162 B
Ruby
class AddUserIndexes < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_index :oauth_tokens, [:user_id]
|
|
add_index :client_applications, [:user_id]
|
|
end
|
|
end
|