mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-06 11:10:08 +00:00
14 lines
293 B
Ruby
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
|