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

migrate_devops_segments_to_groups.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de2d990996162da259fd7c6cf74a5a2a01dd83aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true
module Gitlab
  module BackgroundMigration
    # EE-specific migration
    class MigrateDevopsSegmentsToGroups
      def perform
        # no-op for CE
      end
    end
  end
end

Gitlab::BackgroundMigration::MigrateDevopsSegmentsToGroups.prepend_if_ee('EE::Gitlab::BackgroundMigration::MigrateDevopsSegmentsToGroups')