Sha256: bd92b20cdba0d4a5fd0eef3031952f35b67470e50bd97e5a8fcf296c2a58fb5f
Contents?: true
Size: 348 Bytes
Versions: 16
Compression:
Stored size: 348 Bytes
Contents
# frozen_string_literal: true class AddSectionTypeToDecidimPlansSections < ActiveRecord::Migration[5.2] def up add_column :decidim_plans_sections, :section_type, :string execute "UPDATE decidim_plans_sections SET section_type = 'field_text_multiline'" end def down remove_column :decidim_plans_sections, :section_type end end
Version data entries
16 entries across 16 versions & 1 rubygems