Sha256: d896923506ec38c5ba18b47c9fe83096d1ad89ca5f4d486246bf10cbb746b1ee
Contents?: true
Size: 461 Bytes
Versions: 6
Compression:
Stored size: 461 Bytes
Contents
# frozen_string_literal: true class CreateKatalystNavigationItems < ActiveRecord::Migration[7.0] def change create_table :katalyst_navigation_items do |t| t.belongs_to :menu, foreign_key: { to_table: :katalyst_navigation_menus }, null: false t.string :type t.string :title t.string :url t.string :http_method t.string :target t.boolean :visible, default: true, null: false t.timestamps end end end
Version data entries
6 entries across 6 versions & 1 rubygems