The code powering m.abunchtell.com https://m.abunchtell.com
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 

9 Zeilen
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