debian-mirror-gitlab/db/post_migrate/20220325155953_steal_background_job_for_fixing_conflicting_project_names_and_paths.rb
2022-06-21 17:19:12 +05:30

12 lines
252 B
Ruby

# frozen_string_literal: true
class StealBackgroundJobForFixingConflictingProjectNamesAndPaths < Gitlab::Database::Migration[1.0]
def up
Gitlab::BackgroundMigration.steal('FixDuplicateProjectNameAndPath')
end
def down
# no-op
end
end