vote up 1 vote down star

Hi guys, I'm building a small messaging system like you have in facebook. Only thing is that I want to know whats the best way to get on about it. The database design to be precise in this case.

Like all users would have an inbox and sent items folder. Logically something in one persons sent folder would actually be in someone elses inbox. However I don't think using one table to hold the messages would work as lets say someone deletes a message form his sent box it would be gone since both reciever and sender would be referring to the same table. How do I implement this...

flag

66% accept rate

1 Answer

vote up 3 vote down check

Sometimes a schema is better than a long explanation :

users-message-db-design

With this design, if someone deletes a message, it only deletes a row in the "users_has_messages" table, and not the message itself.

Of course, I just threw some fields for the example, you will need much more for your project.

Good luck !

link|flag
1  
What did you use to make that diagram? – Unknown Aug 10 at 6:39
2  
I'd like to know that as well. – Maciek Aug 10 at 6:40
1  
It's MySQL Workbench, a wonderful tool to visually design MySQL databases. dev.mysql.com/downloads/workbench – Blackethylene Aug 10 at 6:57
Nice - how do I set it for both recievers and senders. DO I need to make separate tables for both? – Ali Aug 10 at 7:21
No, you can simply add a field in the "users_has_messages" table, where you can specify if the user is the sender or a receiver. To keep it minimalistic, this field could be a boolean field named something like "is_sender". – Blackethylene Aug 10 at 8:59
show 2 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.