-
Notifications
You must be signed in to change notification settings - Fork 38
Open
Description
It would be useful if the display used the standard crows foot notation, eg as per https://www.codeproject.com/Articles/878359/Data-modelling-using-ERD-with-Crow-Foot-Notation .
def graphviz_crow_arrowheads( cardinality):
if cardinality=='*': # *: {0..N}
head='crowodot'
elif cardinality=='?': # ?: {0,1}
head='teeodot'
elif cardinality=='+': # +: {1,N}
head='crowtee'
elif cardinality=='1': # 1: {1}
head='teetee'
return head
webley-eli
Metadata
Metadata
Assignees
Labels
No labels