We were manually doing the same thing, generating inconsistent results, since the method `valuation_tag_list` was using the `valuation` context, when actually the expected behavior would be to use the `valuation_tag` context.
8 lines
273 B
Ruby
8 lines
273 B
Ruby
namespace :migrations do
|
|
desc "Migrates context of valuation taggings"
|
|
task valuation_taggings: :environment do
|
|
ApplicationLogger.new.info "Updating valuation taggings context"
|
|
Tagging.where(context: "valuation").update_all(context: "valuation_tags")
|
|
end
|
|
end
|