added menu sub sub items (horrible name i know)

This commit is contained in:
Edin Dazdarevic
2015-04-15 00:10:37 +02:00
parent f71ab5ea47
commit 19cdca76b1
9 changed files with 45 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
class CreateMenuSubSubItem < ActiveRecord::Migration
def change
create_table :menu_sub_sub_items do |t|
t.string :title
t.string :url
t.integer :ordinal
t.integer :menu_sub_item_id
end
end
end