Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to implement a messaging system in PHP and MySQL but I'm having some trouble deciding on how I should do the tables and queries.

What would be the best approach for a system that allows for multiple participants? I'm thinking I'd probably need 3 tables (aside from an users table).

Something like

Conversation
------------
id

Messages
--------
id
conversation_id
from_id
subject
message
from_timestamp

Participants
------------
conversation_id
user_id
last_read_timestamp

The way it is setup I'd have to check for read messages by the timestamp instead of ticking off each message. I'd also be able to add participants at any time.

What do you guys think?

Thanks in advance.

share|improve this question
@ChrisWalton - The 'from_id' would be the user_id of the sender of the message. Many participants may belong to a conversation but a message may only belong to one participant (or ex participant - still thinking on how to do this). All participants of a conversation may see messages related to it. Cheers – RS7 May 17 '11 at 15:39
1  
I think from_id is the user_id of the author. If I understood correctly the 'participants' table links conversations to the users table (which is not shown here) and stores the last time the user read this conversation. – Jad May 17 '11 at 15:41

1 Answer

up vote 2 down vote accepted

I don't see much to complain about :) I'd probably cache the last modification date on the conversations table so that a list of "unread" conversations can be displayed quickly. This date would be updated each time a message is posted on the conversation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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