0
0
Fork 0

Add index favourites on account_id and id (#4360)

This commit is contained in:
Akihiko Odaki 2017-07-26 10:35:25 +09:00 committed by Eugen Rochko
parent 2f8bfb3d38
commit 7bf0afb1dc
2 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,6 @@
class AddIndexFavouritesOnAccountIdAndId < ActiveRecord::Migration[5.1]
def change
# Used to query favourites of an account ordered by id.
add_index :favourites, [:account_id, :id]
end
end