Skip to content
Snippets Groups Projects
Commit 44dbc15c authored by Marko Rintamäki's avatar Marko Rintamäki
Browse files

Update application-architecture.md

parent 048337d3
No related branches found
No related tags found
No related merge requests found
Pipeline #438996 passed
...@@ -119,10 +119,44 @@ In other words, how have those different environments been implemented in the pr ...@@ -119,10 +119,44 @@ In other words, how have those different environments been implemented in the pr
* Deployment diagram * Deployment diagram
## Database descriptions ## Database descriptions (Databases as ER-diagram)
> When defining a service, it is common to describe the rough structure of the required data warehouse, eg in the form of an ER diagram.
This gives an idea of ​​what kind of solution is needed. You can apply PlantUML description to generate an ER diagram.
ER-Scheme **Example**
```plantuml
' hide the spot
hide circle
' avoid problems with angled crows feet
skinparam linetype ortho
entity "Entity01" as e01 {
*e1_id : number <<generated>>
--
*name : text
description : text
}
entity "Entity02" as e02 {
*e2_id : number <<generated>>
--
*e1_id : number <<FK>>
other_details : text
}
entity "Entity03" as e03 {
*e3_id : number <<generated>>
--
*e1_id : number <<FK>>
other_details : text
}
e01 ||..o{ e02
e01 |o..o{ e03
```
## ##
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment