summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fill_store_upload.rb
blob: 94c65459a67e1b017ef1d4542685d8d7373790b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true
# rubocop:disable Metrics/AbcSize
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    class FillStoreUpload
      class Upload < ActiveRecord::Base
        self.table_name = 'uploads'
        self.inheritance_column = :_type_disabled
      end

      def perform(start_id, stop_id)
        FillStoreUpload::Upload
          .where(store: nil)
          .where(id: (start_id..stop_id))
          .update_all(store: 1)
      end
    end
  end
end