From 772f0a4d9322201a66444880ee662453ccc8b5d1 Mon Sep 17 00:00:00 2001 From: Corentin RICHARD Date: Wed, 22 May 2024 17:05:31 +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 | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/README.md b/README.md index 1e32834..8cd7d28 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,52 @@ classDiagram ``` +## MLD : + +```mermaid +classDiagram + class Post{ + _id_ BIGINT + title TEXT + text TEXT + isDream BOOLEAN + upVote INT + downVote INT + #profil + } + + class Profil{ + _id_ BIGINT + name TEXT + description TEXT + password TEXT + } + + class Tagging{ + #_tag_ BIGINT + #_post_ BIGINT + } + + class Tags{ + _id_ BIGINT + name TEXT + color TEXT + } + + class Commentary{ + _id_ BIGINT + text TEXT + #post + } + + Post <-- Commentary + Post --> Profil + Tags --> Tagging + Profil <-- Profil + Post --> Tagging + +``` + # Développeurs 🧑‍💻