From 9c1103ab5937a1e80e416096117a680764343b58 Mon Sep 17 00:00:00 2001 From: Debucquoy Date: Wed, 13 Dec 2023 16:15:21 +0100 Subject: [PATCH] First ERB messaging --- Documents/proto/messaging_extension/ERD.md | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 Documents/proto/messaging_extension/ERD.md diff --git a/Documents/proto/messaging_extension/ERD.md b/Documents/proto/messaging_extension/ERD.md new file mode 100644 index 0000000..014f964 --- /dev/null +++ b/Documents/proto/messaging_extension/ERD.md @@ -0,0 +1,86 @@ +# Entity relational diagram + +## Messaging extension + +```mermaid +erDiagram + +%% General +Users + +%% Messages +Discussions{ + Integer id PK + String name +} + +Messages{ + Integer id PK + Integer response FK "Messages" + String content +} + +Discussions ||--o{ Messages: "" +Discussions ||--o{ Users: "" + +Messages o|--o{ Messages: "answers" + +%% Forums +Forums{ + Integer id PK + String name +} + +Topics{ + Integer id PK + String subject + String content + Boolean locked +} +Answers{ + Integer id PK + String content + Boolean anonymous + TimeStamp creation_time +} + +Polls{ + Integer id PK + enum PollType "ALLOW_NEW_OPTIONS ALLOW_MULTIPLE CHOICE" +} +Options{ + Integer id PK + String name +} + +Forums ||--o{ Users: "Registered" +Forums ||--|| Teacher: "Owner" +Forums ||--|| Course: "" +Forums ||--o{ Topics: "" +Forums ||--o{ Polls: "" + +Topics ||--|| Teacher: "Author" +Topics ||--|| Users: "Author" +Topics ||--o{ Answers: "" + +Polls ||--o{ Options: "" + +Options ||--o{ Votes : "" + +Votes }o--|| Users: "Voter" + + +%% Appointments +Teachers +Appointments{ + Integer id PK + TIME sent_time + enum Status +} + +Appointments ||--|| Teachers: "" +Appointments ||--|| Users: "" + +``` + +Debucquoy Anthony