Files
old-ribica/front-api/db/migrate/20150324044115_create_menu_items.rb

10 lines
198 B
Ruby
Raw Normal View History

2015-03-24 06:18:27 +01:00
class CreateMenuItems < ActiveRecord::Migration
def change
create_table :menu_items do |t|
t.string :title
t.string :url
t.integer :ordinal
end
end
end