blob: 0273a4e7c142ef0b68b9e5742eec89094a182950 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
class MoreFasterIndexOnNotifications < ActiveRecord::Migration[5.1]
disable_ddl_transaction!
def change
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
|