about summary refs log tree commit diff
path: root/db/migrate
diff options
context:
space:
mode:
authorJenkins <jenkins@jenkins.ninjawedding.org>2017-12-26 18:17:16 +0000
committerJenkins <jenkins@jenkins.ninjawedding.org>2017-12-26 18:17:16 +0000
commit6b85dba8daf7ddb59063cadfe4e2a6dc071931d5 (patch)
tree9af293d43f7d0685edaaa1a79edb1a68b70ba3bb /db/migrate
parentbed13f22e24763620f2c2d3bcbfe15937336fa88 (diff)
parent127bfda521d97fd173acf3c4fdcedcb065f7eefb (diff)
Merge remote-tracking branch 'tootsuite/master' into glitchsoc/master
Diffstat (limited to 'db/migrate')
-rw-r--r--db/migrate/20171226094803_more_faster_index_on_notifications.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/db/migrate/20171226094803_more_faster_index_on_notifications.rb b/db/migrate/20171226094803_more_faster_index_on_notifications.rb
new file mode 100644
index 000000000..b2e53b82d
--- /dev/null
+++ b/db/migrate/20171226094803_more_faster_index_on_notifications.rb
@@ -0,0 +1,7 @@
+class MoreFasterIndexOnNotifications < ActiveRecord::Migration[5.1]
+  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
+end