Note: to avoid confusion, "answer" will mean a row in the poll_answers table and "choice" will mean whatever is in the "answer" column of that table (I'm applying the same convention in the code of the task). In order make this task perform reasonably on installations with millions of votes, we're using `update_all` to update all the answers with the same choice at once. In order to do that, we first need to check the existing choices and what are the possible option_ids for those choices. Note that, in order for this task to work, we need to remote the duplicate answers first. Otherwise, we will run into a RecordNotUnique exception when trying to add the same option_id to two duplicate answers. So we're making this task depend on the one that removes duplicate answers. That means we no longer need to specify the task to remove duplicate answers in the release tasks; it will automatically be executed when running the task to add an option_id.
15 lines
506 B
Ruby
15 lines
506 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",
|
|
"cache:clear",
|
|
"execute_release_2.2.0_tasks"]
|
|
|
|
desc "Runs tasks needed to upgrade from 2.1.1 to 2.2.0"
|
|
task "execute_release_2.2.0_tasks": [
|
|
"db:mask_ips",
|
|
"polls:remove_duplicate_voters",
|
|
"polls:populate_option_id"
|
|
]
|
|
end
|