data.rake revision e8f60d1e2b57b95839ffe93359dad541a4eceb19
namespace :data do
namespace :migrate do
desc 'Migrate data migrations asynchronously with Sidekiq'
task :async => :environment do
DataMigrationWorker.perform_async_on_queue('default')
end
end
end