974b1b79ce
* Add bell button Fix #4890 * Remove duplicate type from post-deployment migration * Fix legacy class type mappings * Improve query performance with better index * Fix validation * Remove redundant index from notifications
15 строки
550 Б
Ruby
15 строки
550 Б
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveIndexNotificationsOnAccountActivity < ActiveRecord::Migration[5.2]
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
remove_index :notifications, name: :account_activity
|
|
remove_index :notifications, name: :index_notifications_on_account_id_and_id
|
|
end
|
|
|
|
def down
|
|
add_index :notifications, [:account_id, :activity_id, :activity_type], unique: true, name: 'account_activity', algorithm: :concurrently
|
|
add_index :notifications, [:account_id, :id], order: { id: :desc }, algorithm: :concurrently
|
|
end
|
|
end
|