about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authorStarfall <admin@plural.cafe>2020-07-01 13:52:32 -0500
committerStarfall <admin@plural.cafe>2020-07-01 13:52:32 -0500
commitb111ccf9f59af05dbb951dabe2746f9a9b9ccf7a (patch)
treef19a5738ee5c9be7748f4f17431ac936725ad4a5 /db
parent4d93b5c442ff5c9f4d640b4c7d543f0c04c120df (diff)
fix db migration trying to remove a nonexistent index
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20200510181721_remove_duplicated_indexes_pghero.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/migrate/20200510181721_remove_duplicated_indexes_pghero.rb b/db/migrate/20200510181721_remove_duplicated_indexes_pghero.rb
index e2eaf46f1..e7f3462ae 100644
--- a/db/migrate/20200510181721_remove_duplicated_indexes_pghero.rb
+++ b/db/migrate/20200510181721_remove_duplicated_indexes_pghero.rb
@@ -5,7 +5,7 @@ class RemoveDuplicatedIndexesPghero < ActiveRecord::Migration[5.2]
     remove_index :account_pins, name: "index_account_pins_on_account_id", column: :account_id
     remove_index :announcement_mutes, name: "index_announcement_mutes_on_account_id", column: :account_id
     remove_index :announcement_reactions, name: "index_announcement_reactions_on_account_id", column: :account_id
-    remove_index :bookmarks, name: "index_bookmarks_on_account_id", column: :account_id
+    # remove_index :bookmarks, name: "index_bookmarks_on_account_id", column: :account_id
     remove_index :markers, name: "index_markers_on_user_id", column: :user_id
   end
 end