12 lines
218 B
Ruby
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
|