14 lines
517 B
Ruby
14 lines
517 B
Ruby
|
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
|