summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fill_file_store_job_artifact.rb
blob: 22b0ac71920f7bf43248f6067e073f95b4299d3d (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 FillFileStoreJobArtifact
      class JobArtifact < ActiveRecord::Base
        self.table_name = 'ci_job_artifacts'
      end

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