demarches-normaliennes/lib/tasks/deployment/20190212164238_fix_macedonia.rake
Pierre de La Morinerie 669f21d1d8 tasks: replace puts by rake_puts
It avoids tasks logs to clutter the tests output.
2019-10-08 16:54:57 +02:00

14 lines
610 B
Ruby

namespace :after_party do
desc 'Deployment task: fix_macedonia'
task fix_macedonia: :environment do
rake_puts "Running deploy task 'fix_macedonia'"
# Put your task implementation HERE.
Champ.where(type: "Champs::PaysChamp", value: "EX-REPUBLIQUE YOUGOSLAVE DE MACEDOINE").update_all(value: "MACEDOINE DU NORD (REPUBLIQUE DE)")
# Update task as completed. If you remove the line below, the task will
# run with every deploy (or every time you call after_party:run).
AfterParty::TaskRecord.create version: '20190212164238'
end # task :fix_macedonia
end # namespace :after_party