Added new migrations

• Added:
- new migrations
This commit is contained in:
mgabdev
2020-08-06 23:19:34 -05:00
parent f9f2744a63
commit 421ca77587
4 changed files with 49 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
class AddIndexToStatusesReply < ActiveRecord::Migration[5.2]
disable_ddl_transaction!
def change
add_index :statuses, :reply, algorithm: :concurrently
end
end