demarches-normaliennes/lib/tasks/deployment/20221104122104_backfill_users_team_account.rake
2024-08-22 09:26:48 +02:00

15 lines
548 B
Ruby

# frozen_string_literal: true
namespace :after_party do
desc 'Deployment task: backfill_users_team_account'
task backfill_users_team_account: :environment do
User.marked_as_team_account.joins(:administrateur).in_batches do |batch|
batch.update_all(team_account: true)
end
# 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: AfterParty::TaskRecorder.new(__FILE__).timestamp
end
end