2020-08-05 20:09:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Gitlab
|
|
|
|
module BackgroundMigration
|
2020-08-18 11:10:33 -04:00
|
|
|
# This migration is not needed anymore and was disabled, because we're now
|
|
|
|
# also backfilling design positions immediately before moving a design.
|
|
|
|
#
|
|
|
|
# See https://gitlab.com/gitlab-org/gitlab/-/merge_requests/39555
|
2020-08-05 20:09:53 -04:00
|
|
|
class BackfillDesignsRelativePosition
|
|
|
|
def perform(issue_ids)
|
2020-08-18 11:10:33 -04:00
|
|
|
# no-op
|
2020-08-05 20:09:53 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|