Skip to content

Commit 56bbf66

Browse files
committed
Try example
1 parent a72c2f5 commit 56bbf66

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

doc/architectural/central-data-structures.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,22 @@ diagram is a simplified view of how the data structures relate to each other -
1616

1717
```mermaid
1818
erDiagram
19-
goto_modelt {
20-
symbol_tablet symbol_table
21-
goto_functionst goto_functions
22-
}
19+
CUSTOMER ||--o{ ORDER : places
20+
CUSTOMER {
21+
string name
22+
string custNumber
23+
string sector
24+
}
25+
ORDER ||--|{ LINE-ITEM : contains
26+
ORDER {
27+
int orderNumber
28+
string deliveryAddress
29+
}
30+
LINE-ITEM {
31+
string productCode
32+
int quantity
33+
float pricePerUnit
34+
}
2335
```
2436

2537
A `goto_modelt` is effectively a pair, consisting of:

0 commit comments

Comments
 (0)