about summary refs log tree commit diff
path: root/db
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2020-02-16 00:27:54 -0600
committermultiple creatures <dev@multiple-creature.party>2020-02-16 00:27:54 -0600
commit1cea6f8f58202f56bf3cde27de38f549c4b1f0c2 (patch)
treefb1323da24bf1db9819b3c929892a410b1d01a56 /db
parent511cfcc3b71ce26862d74d74c89891f3c8a35507 (diff)
remove unneeded `create index` migration
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20200215020121_add_index_unhidden_to_statuses.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/db/migrate/20200215020121_add_index_unhidden_to_statuses.rb b/db/migrate/20200215020121_add_index_unhidden_to_statuses.rb
deleted file mode 100644
index 17f936a00..000000000
--- a/db/migrate/20200215020121_add_index_unhidden_to_statuses.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-class AddIndexUnhiddenToStatuses < ActiveRecord::Migration[5.2]
-  disable_ddl_transaction!
-
-  def change
-    add_index :statuses, [:account_id, :id, :visibility], where: 'NOT hidden', algorithm: :concurrently, name: 'index_statuses_on_account_id_and_id_and_visibility_not_hidden'
-  end
-end