Sha256: 74210c76bde6f2bcc8f03c5170093cccb22ba8cf06cdaec029310b19823ac79d
Contents?: true
Size: 1.26 KB
Versions: 25
Compression:
Stored size: 1.26 KB
Contents
# frozen_string_literal: true class VotesEnabledToVotesChoices < ActiveRecord::Migration[5.2] class Component < ApplicationRecord self.table_name = :decidim_components end def up budget_components.each do |component| steps = component["settings"] && component["settings"]["steps"] default_step = component["settings"] && component["settings"]["default_step"] if steps.present? new_steps_settings = component["settings"]["steps"].each_with_object({}) do |(step, config), new_config| votes_value = config["votes_enabled"] ? "enabled" : "disabled" new_config[step] = config.merge("votes": votes_value).except("votes_enabled") new_config end component["settings"]["steps"] = new_steps_settings component.save! elsif default_step.present? votes_value = component["settings"]["default_step"]["votes_enabled"] ? "enabled" : "disabled" new_default_step_settings = component["settings"]["default_step"].merge("votes": votes_value).except("votes_enabled") component["settings"]["default_step"] = new_default_step_settings component.save! end end end def budget_components @budget_components ||= Component.where(manifest_name: "budgets") end end
Version data entries
25 entries across 25 versions & 1 rubygems