These tasks are not needed for new installations, and in existing installations they've already been executed when upgrading to version 1.3.0.
12 lines
417 B
Ruby
12 lines
417 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.4.0_tasks"]
|
|
|
|
desc "Runs tasks needed to upgrade from 1.3.0 to 1.4.0"
|
|
task "execute_release_1.4.0_tasks": [
|
|
"active_storage:migrate_from_paperclip"
|
|
]
|
|
end
|