The code powering m.abunchtell.com https://m.abunchtell.com
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

9 linhas
315 B

  1. class MoreFasterIndexOnNotifications < ActiveRecord::Migration[5.1]
  2. disable_ddl_transaction!
  3. def change
  4. add_index :notifications, [:account_id, :id], order: { id: :desc }, algorithm: :concurrently
  5. remove_index :notifications, name: :index_notifications_on_id_and_account_id_and_activity_type
  6. end
  7. end