diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-02-16 00:27:54 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-16 00:27:54 -0600 |
commit | 1cea6f8f58202f56bf3cde27de38f549c4b1f0c2 (patch) | |
tree | fb1323da24bf1db9819b3c929892a410b1d01a56 /db/migrate | |
parent | 511cfcc3b71ce26862d74d74c89891f3c8a35507 (diff) |
remove unneeded `create index` migration
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20200215020121_add_index_unhidden_to_statuses.rb | 7 |
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 |