2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-03-28 01:09:10 +11:00
|
|
|
class AddIndexOnStreamEntries < ActiveRecord::Migration[5.2]
|
2018-01-05 05:38:29 +11:00
|
|
|
disable_ddl_transaction!
|
|
|
|
|
2017-11-30 13:35:54 +11:00
|
|
|
def change
|
|
|
|
add_index :stream_entries, [:account_id, :activity_type, :id], algorithm: :concurrently
|
|
|
|
remove_index :stream_entries, name: :index_stream_entries_on_account_id
|
|
|
|
end
|
|
|
|
end
|