CivicTechTO / CivicTechTO/missing-persons
Create entity relationship diagram of content
- Dominant language
- TypeScript
- Stars
- 9
- Forks
- 4
- PR merge metrics
- No merged PRs in 30d
Description
We can using mermaid rendering on github:
https://mermaid-js.github.io/mermaid/#/entityRelationshipDiagram
```mermaid
erDiagram
CAR ||--o{ NAMED-DRIVER : allows
CAR {
string registrationNumber
string make
string model
}
PERSON ||--o{ NAMED-DRIVER : is
PERSON {
string firstName
string lastName
int age
}
```
Created like so:
```mermaid
erDiagram
CAR ||--o{ NAMED-DRIVER : allows
CAR {
string registrationNumber
string make
string model
}
PERSON ||--o{ NAMED-DRIVER : is
PERSON {
string firstName
string lastName
int age
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.