Sha256: cc6716aa047610586c3d1a5ed4f9cc6bd9169268426fb93b30dd423eb0ea2c18
Contents?: true
Size: 453 Bytes
Versions: 30
Compression:
Stored size: 453 Bytes
Contents
# frozen_string_literal: true class CreateKatalystContentItems < ActiveRecord::Migration[7.0] def change create_table :katalyst_content_items do |t| t.string :type t.belongs_to :container, polymorphic: true t.string :heading, null: false t.boolean :show_heading, null: false, default: true t.string :background, null: false t.boolean :visible, null: false, default: true t.timestamps end end end
Version data entries
30 entries across 30 versions & 1 rubygems