11 lines
249 B
Ruby
11 lines
249 B
Ruby
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
|