Sha256: bb649d730acee2310f7855d5ad12ddbbe739e767818b770c0fb39a1105f3a54e
Contents?: true
Size: 426 Bytes
Versions: 5
Compression:
Stored size: 426 Bytes
Contents
class CreateSpudMenuItems < ActiveRecord::Migration[4.2] def change create_table :spud_menu_items do |t| t.string :parent_type t.integer :parent_id t.integer :item_type t.integer :spud_page_id t.integer :menu_order,:default => 0 t.string :url t.timestamps end add_index :spud_menu_items,[:parent_type,:parent_id] add_index :spud_menu_items,[:menu_order] end end
Version data entries
5 entries across 5 versions & 1 rubygems