summaryrefslogtreecommitdiff
path: root/db/migrate/20191107220314_add_index_to_projects_on_marked_for_deletion.rb
blob: 06849cf9bfd65d779396f529354aaf0ddfe3fda2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

class AddIndexToProjectsOnMarkedForDeletion < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :projects, :marked_for_deletion_at, where: 'marked_for_deletion_at IS NOT NULL'
  end

  def down
    remove_concurrent_index :projects, :marked_for_deletion_at
  end
end