2024-04-04 16:28:57 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Maintenance
|
|
|
|
class BackfillChampsStableIdTask < MaintenanceTasks::Task
|
2024-04-15 10:43:39 +02:00
|
|
|
attribute :limit, :integer
|
2024-04-11 11:44:49 +02:00
|
|
|
no_collection
|
2024-04-04 16:28:57 +02:00
|
|
|
|
2024-04-11 11:44:49 +02:00
|
|
|
def process
|
2024-04-15 10:43:39 +02:00
|
|
|
Migrations::BackfillStableIdJob.perform_later(0, limit)
|
2024-04-04 16:28:57 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|