8 lines
258 B
Ruby
8 lines
258 B
Ruby
namespace :stats_and_results do
|
|
desc "Migrates stats_enabled and results_enabled data to enabled reports"
|
|
task migrate_to_reports: :environment do
|
|
ApplicationLogger.new.info "Migrating stats and results"
|
|
Migrations::Reports.new.migrate
|
|
end
|
|
end
|