debian-mirror-gitlab/db/migrate/20191107220314_add_index_to_projects_on_marked_for_deletion.rb
2019-12-26 22:10:19 +05:30

18 lines
405 B
Ruby

# 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