Class: CreateMenus

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/tkh_menus/create_or_update_migrations/templates/create_menus.rb

Instance Method Summary collapse

Instance Method Details

#downObject



13
14
15
16
# File 'lib/generators/tkh_menus/create_or_update_migrations/templates/create_menus.rb', line 13

def down
  drop_table :menus
  Menu.drop_translation_table!
end

#upObject



2
3
4
5
6
7
8
9
10
11
# File 'lib/generators/tkh_menus/create_or_update_migrations/templates/create_menus.rb', line 2

def up
  create_table :menus do |t|
    t.string :name
    t.string :path
    t.integer :parent_id
    t.integer :position
    t.timestamps
  end
  Menu.create_translation_table! :name => :string, :path => :string
end