about summary refs log tree commit diff
path: root/db/migrate/20171226094803_more_faster_index_on_notifications.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20171226094803_more_faster_index_on_notifications.rb')
-rw-r--r--db/migrate/20171226094803_more_faster_index_on_notifications.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/migrate/20171226094803_more_faster_index_on_notifications.rb b/db/migrate/20171226094803_more_faster_index_on_notifications.rb
index b2e53b82d..0273a4e7c 100644
--- a/db/migrate/20171226094803_more_faster_index_on_notifications.rb
+++ b/db/migrate/20171226094803_more_faster_index_on_notifications.rb
@@ -1,6 +1,7 @@
 class MoreFasterIndexOnNotifications < ActiveRecord::Migration[5.1]
+  disable_ddl_transaction!
+
   def change
-    commit_db_transaction
     add_index :notifications, [:account_id, :id], order: { id: :desc }, algorithm: :concurrently
     remove_index :notifications, name: :index_notifications_on_id_and_account_id_and_activity_type
   end