Sha256: 91a9511a846be1ed566a1deddec7ac73051e7b58d707eb08cbc344d16172e7fa
Contents?: true
Size: 448 Bytes
Versions: 8
Compression:
Stored size: 448 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 t.timestamps end end end
Version data entries
8 entries across 8 versions & 1 rubygems