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.
11 lines
354 B
Ruby
11 lines
354 B
Ruby
namespace :consul do
|
|
desc "Runs tasks needed to upgrade to the latest version"
|
|
task execute_release_tasks: ["settings:add_new_settings", "execute_release_1.1.0_tasks"]
|
|
|
|
desc "Runs tasks needed to upgrade from 1.0.0 to 1.1.0"
|
|
task "execute_release_1.1.0_tasks": [
|
|
"budgets:set_original_heading_id",
|
|
"migrations:valuation_taggings"
|
|
]
|
|
end
|