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

update_workspaces_config_version3.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8626f7f608de6ed178f8970912291bc716b41bd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # No op on ce
    class UpdateWorkspacesConfigVersion3 < BatchedMigrationJob
      feature_category :remote_development
      def perform; end
    end
  end
end

Gitlab::BackgroundMigration::UpdateWorkspacesConfigVersion3.prepend_mod_with('Gitlab::BackgroundMigration::UpdateWorkspacesConfigVersion3') # rubocop:disable Layout/LineLength -- Injecting extension modules must be done on the last line of this file, outside of any class or module definitions