The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

13 lines
613 B

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