Blame
|
1 | # Filesystem Layer |
||||||
| 2 | ||||||||
| 3 | ```mermaid |
|||||||
|
4 | erDiagram |
||||||
| 5 | CUSTOMER }|..|{ DELIVERY-ADDRESS : has |
|||||||
| 6 | CUSTOMER ||--o{ ORDER : places |
|||||||
| 7 | CUSTOMER ||--o{ INVOICE : "liable for" |
|||||||
| 8 | DELIVERY-ADDRESS ||--o{ ORDER : receives |
|||||||
| 9 | INVOICE ||--|{ ORDER : covers |
|||||||
| 10 | ORDER ||--|{ ORDER-ITEM : includes |
|||||||
| 11 | PRODUCT-CATEGORY ||--|{ PRODUCT : contains |
|||||||
| 12 | PRODUCT ||--o{ ORDER-ITEM : "ordered in" |
|||||||
|
13 | ``` |
||||||
| 14 | > [!NOTE] |
|||||||
| 15 | > This diagram is evolving as I am in the process of implementing |
|||||||
| 16 | > the code for this. Anything could change, so come back often. |
|||||||