You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
548 B

  1. # frozen_string_literal: true
  2. class ImproveIndexOnStatusesForApiV1AccountsAccountIdStatuses < ActiveRecord::Migration[5.1]
  3. disable_ddl_transaction!
  4. def change
  5. add_index :statuses, [:account_id, :id, :visibility], where: 'visibility IN (0, 1, 2)', algorithm: :concurrently
  6. add_index :statuses, [:account_id, :id], where: 'visibility = 3', algorithm: :concurrently
  7. remove_index :statuses, column: [:account_id, :id, :visibility, :updated_at], order: { id: :desc }, algorithm: :concurrently, name: :index_statuses_20180106
  8. end
  9. end