Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220325155953_steal_background_job_for_fixing_conflicting_project_names_and_paths.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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