debian-mirror-gitlab/lib/gitlab/background_migration/fix_ruby_object_in_audit_events.rb
2020-06-23 00:09:42 +05:30

14 lines
362 B
Ruby

# 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')