Since it does not appear in the phases anymore. Also, the rake unifies the fields of the budget summary with the budget description.
15 lines
489 B
Ruby
15 lines
489 B
Ruby
namespace :consul do
|
|
desc "Runs tasks needed to upgrade to the latest version"
|
|
task execute_release_tasks: ["settings:rename_setting_keys",
|
|
"settings:add_new_settings",
|
|
"execute_release_1.3.0_tasks"]
|
|
|
|
desc "Runs tasks needed to upgrade from 1.2.0 to 1.3.0"
|
|
task "execute_release_1.3.0_tasks": [
|
|
"db:load_sdg",
|
|
"db:calculate_tsv",
|
|
"budgets:set_published",
|
|
"budgets:phases_summary_to_description"
|
|
]
|
|
end
|