Files
gitlab-foss/lib/gitlab/background_migration/backfill_seat_assignments_table.rb
2024-11-26 18:29:55 +00:00

14 lines
293 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
class BackfillSeatAssignmentsTable < BatchedMigrationJob
feature_category :seat_cost_management
def perform; end
end
end
end
Gitlab::BackgroundMigration::BackfillSeatAssignmentsTable.prepend_mod