about summary refs log tree commit diff
path: root/db/migrate/20171226094803_more_faster_index_on_notifications.rb
blob: b2e53b82ddca046d8779556869fbc2eb241c2c8a (plain) (blame)
1
2
3
4
5
6
7
class MoreFasterIndexOnNotifications < ActiveRecord::Migration[5.1]
  def change
    commit_db_transaction
    add_index :notifications, [:account_id, :id], order: { id: :desc }, algorithm: :concurrently
    remove_index :notifications, name: :index_notifications_on_id_and_account_id_and_activity_type
  end
end