pollen_app/migrations/00550_create_menus.rb
Nicolas Bally 120e9803eb initial
2020-04-28 14:51:42 +02:00

12 lines
218 B
Ruby

class CreateMenus < ActiveRecord::Migration[6.0]
def change
create_table :menus do |t|
t.string :name
t.string :max_levels
t.string :slug
t.timestamps
end
end
end