lockaz_app/migrations/00550_create_menus.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +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