Gab-Social/db/migrate/20200806162649_add_index_to_statuses_reply.rb
mgabdev 421ca77587 Added new migrations
• Added:
- new migrations
2020-08-06 23:19:34 -05:00

8 lines
170 B
Ruby

class AddIndexToStatusesReply < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def change
add_index :statuses, :reply, algorithm: :concurrently
end
end