The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

9 řádky
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