debian-mirror-gitlab/lib/gitlab/background_migration/backfill_designs_relative_position.rb

16 lines
420 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module Gitlab
module BackgroundMigration
# 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
class BackfillDesignsRelativePosition
def perform(issue_ids)
# no-op
end
end
end
end