From 2e07669d7668bf488809bf836f8c5dddf6de1287 Mon Sep 17 00:00:00 2001 From: Corentin RICHARD Date: Wed, 22 May 2024 16:57:07 +0200 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'README.md'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) 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