summaryrefslogtreecommitdiff
path: root/lib/gitlab/background_migration/fix_incorrect_max_seats_used.rb
blob: 2c09b8c0b2441d9144af85472390d5fe1effd079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Gitlab
  module BackgroundMigration
    # rubocop: disable Style/Documentation
    class FixIncorrectMaxSeatsUsed
      def perform(batch = nil)
      end
    end
  end
end

Gitlab::BackgroundMigration::FixIncorrectMaxSeatsUsed.prepend_mod_with('Gitlab::BackgroundMigration::FixIncorrectMaxSeatsUsed')