Categories: All - database - messages - files - users

by Abhishek Dinesan 1 year ago

90

Database Diagram for Tuq

The scenario involves designing a database schema for a messaging application. The application should support private messages, the ability to attach files such as images and text, and group chats.

Database Diagram for Tuq

join

updated_id

Group_messages

group_id

message_id

UserID (primary)

Users

bio

profile

password

number

Group

recieved_at

name

id (primary)

Messages

reciever_id

sender_id

created_at

message_file

message_text

id (primary)

2. Create an database diagram (along with all required joins and model details) for a simple messaging app capable of sending messages, attaching files (images and text), and having group chats.

Database Diagram for Tuq