0
0
Fork 0

add index on statuses for /api/v1/accounts/:account_id/statuses (#6202)

This commit is contained in:
takayamaki 2018-01-09 23:00:19 +09:00 committed by Eugen Rochko
parent eec6095e02
commit 6f5c0afe93
2 changed files with 12 additions and 2 deletions

View file

@ -0,0 +1,10 @@
class AddIndexOnStatusesForApiV1AccountsAccountIdStatuses < ActiveRecord::Migration[5.1]
disable_ddl_transaction!
def change
safety_assured do
add_index :statuses, [:account_id, :id, :visibility, :updated_at], order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20180106
end
remove_index :statuses, name: :index_statuses_on_account_id_id
end
end