diff --git a/lib/tasks/deployment/20181010102500_remove_invite_gestionnaires.rake b/lib/tasks/deployment/20181010102500_remove_invite_gestionnaires.rake new file mode 100644 index 000000000..fbbce4a15 --- /dev/null +++ b/lib/tasks/deployment/20181010102500_remove_invite_gestionnaires.rake @@ -0,0 +1,10 @@ +namespace :after_party do + desc 'Deployment task: remove_invite_gestionnaires' + task remove_invite_gestionnaires: :environment do + InviteGestionnaire.destroy_all + + # 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: '20181010102500' + end +end