task(champs): update champs for each dossier

This commit is contained in:
Paul Chavard 2024-03-19 16:08:56 +01:00 committed by GitHub
parent 776f81eb0e
commit bda2d80dea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,18 +3,16 @@
module Maintenance module Maintenance
class FillChampsStableIdTask < MaintenanceTasks::Task class FillChampsStableIdTask < MaintenanceTasks::Task
def collection def collection
Champ.all Dossier.all
end end
def process(champ) def process(dossier)
if !champ.attribute_present?(:stable_id) dossier.champs
champ.update_columns(stable_id: champ.stable_id, stream: 'main') .includes(:type_de_champ)
end .where(stable_id: nil)
end .each do |champ|
champ.update_columns(stable_id: champ.stable_id, stream: 'main')
def count end
sql = "SELECT reltuples FROM pg_class WHERE relname = 'champs';"
Champ.connection.select_value(sql).to_i
end end
end end
end end