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

set_null_package_files_file_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: 9ac92aab63715556055a0488aab295df98739aaa (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 package files
    # with file_store == NULL to 1.
    #
    # The index `index_packages_package_files_file_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 SetNullPackageFilesFileStoreToLocalValue
      LOCAL_STORE = 1 # equal to ObjectStorage::Store::LOCAL

      # Temporary AR class for package files
      class PackageFile < ActiveRecord::Base
        self.table_name = 'packages_package_files'
      end

      def perform(start_id, stop_id)
        Packages::PackageFile.where(file_store: nil, id: start_id..stop_id).update_all(file_store: LOCAL_STORE)
      end
    end
  end
end