Exemple Mermaid ER
Apparence
Exemple Mermaid ER
Exemple de diagramme entité-relation.
erDiagram
USER ||--o{ PAGE : creates
PAGE ||--o{ REVISION : has
USER ||--o{ REVISION : writes
PAGE {
int id
string title
string status
}
USER {
int id
string name
string role
}
REVISION {
int id
datetime created_at
text comment
}