From 6d2cfdcae5727462a751c2fc2879fba9cc4ebb9c Mon Sep 17 00:00:00 2001 From: Corentin RICHARD Date: Wed, 22 May 2024 16:54:00 +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 | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/README.md b/README.md index 5d58262..efd1f47 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,44 @@ Cet API permet le stockage et la récupération des informations stockés pour le bon fonctionnement de votre forum préféré : **Fukafukashita** +# Base De données + +## MCD : +```mermaid +classDiagram + 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 + +``` + # Développeurs 🧑‍💻