I need to create a table in MySQL for private messaging between users. I've got a problem when it comes to multiple recipients: I have to create a record for each recipient? For example:
mail_uid = 1 | sender_uid = 6891 | recipient_uid = 5448 | text = Lorem ipsum
mail_uid = 2 | sender_uid = 6891 | recipient_uid = 9128 | text = Lorem ipsum
Isn't there a way to pu all the ID in one field?
mail_uid = 1 | sender_uid = 6891 | recipient_uid = 5448, 9128 | text = Lorem ipsum
And then split the content of the field?
Thank you in advance