Sha256: 64a31e48257389057b8dd33a4492bc4bb4da4fc2e7668a5edc18a53d94e881b3
Contents?: true
Size: 777 Bytes
Versions: 94
Compression:
Stored size: 777 Bytes
Contents
# frozen_string_literal: true class AddHighlightedContentBannerToDecidimOrganizations < ActiveRecord::Migration[5.1] def change add_column :decidim_organizations, :highlighted_content_banner_enabled, :boolean, null: false, default: false add_column :decidim_organizations, :highlighted_content_banner_title, :jsonb add_column :decidim_organizations, :highlighted_content_banner_short_description, :jsonb add_column :decidim_organizations, :highlighted_content_banner_action_title, :jsonb add_column :decidim_organizations, :highlighted_content_banner_action_subtitle, :jsonb add_column :decidim_organizations, :highlighted_content_banner_action_url, :string add_column :decidim_organizations, :highlighted_content_banner_image, :string end end
Version data entries
94 entries across 94 versions & 1 rubygems