Sha256: 2bc0ae8a2707169a7f65a56a11cf48f328bcddc0d8e3a2175d01196d0f0b3614
Contents?: true
Size: 355 Bytes
Versions: 8
Compression:
Stored size: 355 Bytes
Contents
class CreateMenuItems < ActiveRecord::Migration def change create_table :odania_menu_items do |t| t.integer :menu_id t.string :title t.boolean :published t.string :target_type t.text :target_data t.integer :parent_id t.integer :position t.string :full_path end add_index :odania_menu_items, [:menu_id, :full_path] end end
Version data entries
8 entries across 8 versions & 1 rubygems