about summary refs log tree commit diff
path: root/db/migrate/20180106000232_add_index_on_statuses_for_api_v1_accounts_account_id_statuses.rb
blob: 401fc5e62eb7f303b299438671a717e5a24fbae0 (plain) (blame)
1
2
3
4
5
6
7
8
9
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