Merge pull request #1490 from tchak/fix-private-champs-task

some old champ live in a parallel space time continuum without valid …
This commit is contained in:
Paul Chavard 2018-02-27 11:22:58 +01:00 committed by GitHub
commit 990b8c09ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,9 @@
namespace :'2018_02_13_fill_champ_private_and_type' do
task set: :environment do
Champ.includes(:type_de_champ).find_each do |champ|
champ.update_columns(champ.type_de_champ.params_for_champ)
if champ.type_de_champ.present?
champ.update_columns(champ.type_de_champ.params_for_champ)
end
end
TypeDeChamp.find_each do |type_de_champ|