2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-04-28 15:15:11 +00:00
|
|
|
class AddIndexStatusesOnAccountId < ActiveRecord::Migration[6.1]
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_index :statuses, [:account_id], name: :index_statuses_on_account_id, algorithm: :concurrently
|
|
|
|
end
|
|
|
|
end
|