Commit a7bcb0a8 by Vitória Titon

Diagrama UML Dishly

parent 6ede3ab4
@startuml Dishly
entity Usuario {
* id : number <<PK>>
--
nome : text
email : text
senha : text
}
entity Receitas {
* id : number <<PK>>
--
nome_receita : text
descricao : text
ingredientes : text
modo_preparo : text
}
entity Post_Receitas {
* id : number <<PK>>
--
imagem : text
receitas_id : number <<FK>>
user_id : number <<FK>>
}
entity Salvos {
* id : number <<PK>>
--
user_id : number <<FK>>
postReceita_id : number <<FK>>
}
Usuario ||--o{ Post_Receitas : cria
Usuario ||--o{Salvos : salva
Receitas ||--o{ Post_Receitas : contem
Post_Receitas ||--o{ Salvos : contem
@enduml
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment