gitlab-org--gitlab-foss/db/post_migrate/20220325155953_steal_backgr...

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