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

migrate_shimo_confluence_integration_category.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ec4631d1e34c4435e95b53d53de26f5757749057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # The class to migrate category of integrations to third_party_wiki for confluence and shimo
    class MigrateShimoConfluenceIntegrationCategory
      include Gitlab::Database::DynamicModelHelpers

      def perform(start_id, end_id)
        define_batchable_model('integrations', connection: ::ActiveRecord::Base.connection)
          .where(id: start_id..end_id, type_new: %w[Integrations::Confluence Integrations::Shimo])
          .update_all(category: 'third_party_wiki')

        mark_job_as_succeeded(start_id, end_id)
      end

      private

      def mark_job_as_succeeded(*arguments)
        Gitlab::Database::BackgroundMigrationJob.mark_all_as_succeeded(
          self.class.name.demodulize,
          arguments
        )
      end
    end
  end
end