demarches-normaliennes/app/tasks/maintenance/fill_champs_stable_id_task.rb

14 lines
283 B
Ruby
Raw Normal View History

2024-03-15 14:56:46 +01:00
# frozen_string_literal: true
module Maintenance
class FillChampsStableIdTask < MaintenanceTasks::Task
def collection
Champ.includes(:type_de_champ)
end
def process(champ)
champ.update_columns(stable_id: champ.stable_id, stream: 'main')
end
end
end