Skip to content

Commit

Permalink
Try example
Browse files Browse the repository at this point in the history
  • Loading branch information
tautschnig committed Jan 13, 2025
1 parent a72c2f5 commit 56bbf66
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions doc/architectural/central-data-structures.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,22 @@ diagram is a simplified view of how the data structures relate to each other -

```mermaid
erDiagram
goto_modelt {
symbol_tablet symbol_table
goto_functionst goto_functions
}
CUSTOMER ||--o{ ORDER : places
CUSTOMER {
string name
string custNumber
string sector
}
ORDER ||--|{ LINE-ITEM : contains
ORDER {
int orderNumber
string deliveryAddress
}
LINE-ITEM {
string productCode
int quantity
float pricePerUnit
}
```

A `goto_modelt` is effectively a pair, consisting of:
Expand Down

0 comments on commit 56bbf66

Please sign in to comment.