From a3140cd5944a1ac9ceebf684d7d074ab70c775e7 Mon Sep 17 00:00:00 2001 From: Maksym Shenderuk Date: Fri, 17 Nov 2023 14:27:23 +0000 Subject: [PATCH] Add project models ERD with descriptions --- Models.md | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Models.md diff --git a/Models.md b/Models.md new file mode 100644 index 0000000..3ea7eaa --- /dev/null +++ b/Models.md @@ -0,0 +1,32 @@ +# Entity-relationship diagram +```mermaid +erDiagram +USER }o--o{ USER : contact +CONFIG ||--|| USER : has +MESSAGE }o--|| USER : write +MESSAGE }o--o{ MESSAGE : "answer to" +GROUP }o--o{ USER : joined +``` + +# Models +`USER`: Represents individual users. +`CONFIG`: Represents configurations or settings. +`MESSAGE`: Represents individual messages sent or received. +`GROUP`: Represents a group of users. + +# Relations + +## USER with USER +Represents a many-to-many relationship between users, indicating that users can be in contact with multiple other users and vice versa. This could represent a social network-like relationship where users can communicate with each other. + +## USER with CONFIG +This notation signifies a one-to-one relationship, indicating that each user has one specific configuration, and that configuration is owned by that user exclusively. This relationship implies a direct mapping between a user and their unique configuration settings within the system. + +## USER with MESSAGE +Represents a one-to-many relationship between USER and MESSAGE, indicating that a user can write multiple messages, but each message is written by only one user. + +## MESSAGE with MESSAGE +Represents a many-to-many relationship between messages, indicating that a message can be an answer to multiple other messages, and vice versa. This could represent threaded or nested messages where one message is a reply to another. + +## GROUP with USER +Represents a many-to-many relationship between GROUP and USER, indicating that users can join multiple groups, and a group can have multiple users as members. \ No newline at end of file