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

fix_ruby_object_in_audit_events.rb « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46921a070c3ccc1b9854a10d6ade490472825047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # Remove serialized Ruby object in audit_events
    class FixRubyObjectInAuditEvents
      def perform(start_id, stop_id)
      end
    end
  end
end

Gitlab::BackgroundMigration::FixRubyObjectInAuditEvents.prepend_if_ee('EE::Gitlab::BackgroundMigration::FixRubyObjectInAuditEvents')