summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/nullify_last_error_from_project_mirror_data.rb
blob: 6ea5c17353b7e1ab59c9282de95bb59725853279 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Nullifies last_error value from project_mirror_data table as they
    # potentially included sensitive data.
    # https://gitlab.com/gitlab-org/security/gitlab/-/merge_requests/3041
    class NullifyLastErrorFromProjectMirrorData < BatchedMigrationJob
      feature_category :source_code_management
      operation_name :update_all

      def perform
        each_sub_batch { |rel| rel.update_all(last_error: nil) }
      end
    end
  end
end