basic_app/migrations/00550_create_menus.rb
Nicolas Bally fd027c16c1 initial
2020-04-21 21:53:16 +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