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

fill_file_store_lfs_object.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77c1f1ffaf06af97f6272997a8cf2b570455fe2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class FillFileStoreLfsObject
      class LfsObject < ActiveRecord::Base
        self.table_name = 'lfs_objects'
      end

      def perform(start_id, stop_id)
        FillFileStoreLfsObject::LfsObject
          .where(file_store: nil)
          .where(id: (start_id..stop_id))
          .update_all(file_store: 1)
      end
    end
  end
end