diff --git a/README.md b/README.md index efd1f47..cf998ca 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,38 @@ classDiagram text TEXT } + Post "1" <-- "n" Commentary : respond + Post "n" <-- "1" Profil : publish + Tags "n" --> "n" Post : Have + Profil "n" -- "n" Profil : Follow + + class Post{ + _id_ BIGINT + title TEXT + text TEXT + isDream BOOLEAN + upVote INT + downVote INT + } + + class Profil{ + _id_ BIGINT + name TEXT + description TEXT + password TEXT + } + + class Tags{ + id BIGINT + name TEXT + color TEXT + } + + class Commentary{ + _id_ BIGINT + text TEXT + } + Post "1" <-- "n" Commentary : respond Post "n" <-- "1" Profil : publish Tags "n" --> "n" Post : Have