I have a mysql table with the following columns:
group_id game_id user_id message last_update
I want to make it so that no two rows can exi
well for this you can create composite key of group_id and user_id using any mysql editor like phpmyadmin or sqlyog, and mark it as unique index.