summaryrefslogtreecommitdiff
path: root/db/migrate/20210601132134_remove_partial_index_for_hashed_storage_migration.rb
blob: d9793832d8cfb05b1c24acd4d348f1ef1c4adaf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class RemovePartialIndexForHashedStorageMigration < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  def up
    remove_concurrent_index :projects, :id, name: 'index_on_id_partial_with_legacy_storage'
  end

  def down
    add_concurrent_index :projects, :id, where: 'storage_version < 2 or storage_version IS NULL', name: 'index_on_id_partial_with_legacy_storage'
  end
end