summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220325155953_steal_background_job_for_fixing_conflicting_project_names_and_paths.rb
blob: 4c4c29e2b7cfe9b3aac96bfa9c3da02a20a6dc00 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class StealBackgroundJobForFixingConflictingProjectNamesAndPaths < Gitlab::Database::Migration[1.0]
  def up
    Gitlab::BackgroundMigration.steal('FixDuplicateProjectNameAndPath')
  end

  def down
    # no-op
  end
end