This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/db/migrate/20220428112511_add_index_st...

8 lines
218 B
Ruby

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