The code powering m.abunchtell.com https://m.abunchtell.com
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

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