From 6225215c6e9737965a36cef06bf3ec5d22e2b53a Mon Sep 17 00:00:00 2001 From: Nicolas Lenz Date: Sat, 29 Aug 2020 18:37:53 +0200 Subject: [PATCH] Update db schema layouting Previously, single dashes were used for associatons, which makes PlantUML layout all of them in an horizontal line. I changed that to two dashes so that PlantUML uses normal layouting. I think that is far clearer. (See https://plantuml.com/class-diagram for more on layouting) Signed-off-by: Nicolas Lenz --- docs/dev/db-schema.plantuml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/docs/dev/db-schema.plantuml b/docs/dev/db-schema.plantuml index c1da19814..130bcb63f 100644 --- a/docs/dev/db-schema.plantuml +++ b/docs/dev/db-schema.plantuml @@ -115,18 +115,18 @@ entity "Group" { *canEdit : boolean } -Note "1" - "1..*" Revision -Revision "0..*" - "0..*" Authorship +Note "1" -- "1..*" Revision +Revision "0..*" -- "0..*" Authorship (Revision, Authorship) .. RevisionAuthorship -Authorship "0..*" - "1" User -Note "1" - "0..*" User : owner -Note "1" - "0..*" NoteUserPermission -NoteUserPermission "1" - "1" User -Note "1" - "0..*" NoteGroupPermission -NoteGroupPermission "0..*" - "1" Group -Identity "1..*" - "1" User -authToken "1..*" - "1" User -seesion "1..*" - "1" User -Note "0..*" - "0..*" User : color +Authorship "0..*" -- "1" User +Note "1" -- "0..*" User : owner +Note "1" -- "0..*" NoteUserPermission +NoteUserPermission "1" -- "1" User +Note "1" -- "0..*" NoteGroupPermission +NoteGroupPermission "0..*" -- "1" Group +Identity "1..*" -- "1" User +authToken "1..*" -- "1" User +seesion "1..*" -- "1" User +Note "0..*" -- "0..*" User : color (Note, User) .. AuthorColors @enduml