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

backfill_designs_relative_position.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: efbb1b950ad9de2afceba7258b272f8934419d58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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