Sha256: 1b9542eaa013aec944ed5e0d7a6eb1f1b6aa4a4bd721a569f938e6e40ebf47e3
Contents?: true
Size: 1.16 KB
Versions: 17
Compression:
Stored size: 1.16 KB
Contents
# frozen_string_literal: true class MoveOrganizationFieldsToHeroContentBlock < ActiveRecord::Migration[5.2] # This migration made use CarrierWave, which in future will be eliminated. # The organization homepage image was moved to the content block background # image using CarrierWave. This operation has been removed, so if there is # an existing homepage image previous to this migration the content block # background image should be loaded manually class Organization < ApplicationRecord self.table_name = :decidim_organizations end def change Decidim::ContentBlock.reset_column_information Organization.find_each do |organization| content_block = Decidim::ContentBlock.find_by(organization:, scope: :homepage, manifest_name: :hero) settings = {} welcome_text = organization.welcome_text || {} settings = welcome_text.inject(settings) { |acc, (k, v)| acc.update("welcome_text_#{k}" => v) } content_block.settings = settings content_block.settings_will_change! content_block.save! end remove_column :decidim_organizations, :welcome_text remove_column :decidim_organizations, :homepage_image end end
Version data entries
17 entries across 17 versions & 1 rubygems