10 lines
198 B
Ruby
10 lines
198 B
Ruby
|
|
class CreateMenuItems < ActiveRecord::Migration
|
||
|
|
def change
|
||
|
|
create_table :menu_items do |t|
|
||
|
|
t.string :title
|
||
|
|
t.string :url
|
||
|
|
t.integer :ordinal
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|