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

set_null_external_diff_store_to_local_value.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 71f3483987e2599a8ac5f53965f84f2b8ac3ddef (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
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # This class is responsible for migrating a range of merge request diffs
    # with external_diff_store == NULL to 1.
    #
    # The index `index_merge_request_diffs_external_diff_store_is_null` is
    # expected to be used to find the rows here and in the migration scheduling
    # the jobs that run this class.
    class SetNullExternalDiffStoreToLocalValue
      LOCAL_STORE = 1 # equal to ObjectStorage::Store::LOCAL

      # Temporary AR class for merge request diffs
      class MergeRequestDiff < ActiveRecord::Base
        self.table_name = 'merge_request_diffs'
      end

      def perform(start_id, stop_id)
        MergeRequestDiff.where(external_diff_store: nil, id: start_id..stop_id).update_all(external_diff_store: LOCAL_STORE)
      end
    end
  end
end