2024-03-15 14:56:46 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Maintenance
|
|
|
|
class FillChampsStableIdTask < MaintenanceTasks::Task
|
|
|
|
def collection
|
2024-03-19 16:08:56 +01:00
|
|
|
Dossier.all
|
2024-03-15 14:56:46 +01:00
|
|
|
end
|
|
|
|
|
2024-03-19 16:08:56 +01:00
|
|
|
def process(dossier)
|
|
|
|
dossier.champs
|
|
|
|
.includes(:type_de_champ)
|
|
|
|
.where(stable_id: nil)
|
2024-03-19 16:20:24 +01:00
|
|
|
.find_each do |champ|
|
2024-03-19 16:08:56 +01:00
|
|
|
champ.update_columns(stable_id: champ.stable_id, stream: 'main')
|
|
|
|
end
|
2024-03-18 17:06:24 +01:00
|
|
|
end
|
2024-03-15 14:56:46 +01:00
|
|
|
end
|
|
|
|
end
|