14 lines
413 B
Ruby
14 lines
413 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module BackgroundMigration
|
|
# No op on ce
|
|
class UpdateWorkspacesConfigVersion < BatchedMigrationJob
|
|
feature_category :remote_development
|
|
def perform; end
|
|
end
|
|
end
|
|
end
|
|
|
|
Gitlab::BackgroundMigration::UpdateWorkspacesConfigVersion.prepend_mod_with('Gitlab::BackgroundMigration::UpdateWorkspacesConfigVersion') # rubocop:disable Layout/LineLength
|