summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fill_file_store_lfs_object.rb
blob: d0816ae3ed5c84c2778d7fef114be6aa7c2b2634 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
# rubocop:disable Metrics/AbcSize
# 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