开发者

Messaging system database schema

开发者 https://www.devze.com 2023-03-06 07:35 出处:网络
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.

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_开发者_如何学JAVAid
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.


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.


I would have put the subject field on the conversation table. Putting it on every single message looks redundant. Also, I'd save the creation time and the author user id of the conversation in its table.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号