-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Milestone
Description
En la pagina de detalles del place se debe poder visualizar la siguiente informacion:
(Issue asociado: #2 )
Place details
- Nombre
- Direccion
- Telefono
- Score
App detail
- Categoria
- Barrio (es como una categoria especial pero no es categoria, para filtrado y geolocalizacion)
Menu
Menu items:
- Nombre
- Descripcion
- Precio
Basate del tipo de datos que se usa en la app rails:
https://github.com/matiasmoya/comida4u/blob/master/db/schema.rb
create_table "menus", force: true do |t|
t.string "name"
t.integer "place_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "menu_items", force: true do |t|
t.decimal "price", precision: 8, scale: 2
t.string "name"
t.text "description"
t.integer "menu_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "places", force: true do |t|
t.string "name"
t.string "street"
t.string "city"
t.string "phone"
t.string "phone_b" # (opcional)
t.string "phone_c" # (opcional)
t.integer "score" # (ranking del 1 al 10)
t.integer "user_id" # (user que publico el place)
t.integer "category_id" # (categoria del place)
t.integer "neighborhood_id" # (barrio del place)
endReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels