mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
7347d4f8bb
Migration is wrapped by transaction, so manual `commit_db_transaction` without transaction restarting causes "there is no transaction in progress" warnings. We should use `disable_ddl_transaction!` instead, if we can omit transaction completely.
9 lines
280 B
Ruby
9 lines
280 B
Ruby
class AddIndexOnStreamEntries < ActiveRecord::Migration[5.1]
|
|
disable_ddl_transaction!
|
|
|
|
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
|