up vote 11 down vote favorite
6
share [g+] share [fb]

I'm trying to design a data model that denotes one user being the friend of another user. This is what i've come up with so far, but it seems clunky, is there a better solution?

User
=====
Id
Name
etc...

UserFriend
===========
UserId
FriendId
IsMutual
IsBlocked
link|improve this question

What's clunky about it? – krusty.ar Dec 18 '08 at 20:57
It's probably the IsMutual field that was making it feel clunky- I'm going to remove it, like the answers suggest. – Zachary Yates Dec 18 '08 at 22:13
feedback

10 Answers

up vote 9 down vote accepted
UserRelationship
====
RelatingUserID
RelatedUserID
Type[friend, block, etc]

Agree that mutuality doesn't belong as a column; breaks normalization.

link|improve this answer
I think I like this the best. I'll try it out. – Zachary Yates Dec 18 '08 at 22:15
If you like it the best, you should probably mark it as the accepted answer. :) – chaos Dec 21 '08 at 5:00
chaos, i would appreciate if you can expand a little the propossed model, i find it interesting but would like to see it a little more detailed; thanks – Jhonny D. Cano -Leftware- Apr 3 '09 at 18:49
I don't really know what sort of detail you're looking for. What I posted is all that's pertinent to the question. – chaos Apr 3 '09 at 18:59
feedback

I'd do something similar to what you have, but remove the "IsMutual" flag. Simply add a second row with inverse values when it is mutual. It does add rows, but feels a lot cleaner.

link|improve this answer
feedback

I am currently building a social networking site for a client and I expressed things this way

CREATE TABLE [dbo].[PersonFriend] (
    [Id]                          INT            IDENTITY (1, 1) NOT NULL,
    [Timestamp]                   DATETIME       NOT NULL,
    [ChangeUser]                  NVARCHAR (200) NOT NULL,
    [FriendStatusId]              TINYINT        NOT NULL,
    [Person1Id]                   INT            NOT NULL,
    [Person2Id]                   INT            NOT NULL,
    [Person1RequestTimestamp]     DATETIME       NOT NULL,
    [Person2AcknowledgeTimestamp] DATETIME       NULL
);

Each person is stored in the Person table (imagine that). The Person1Id and Person2Id fields are FK to the person table. I keep a status list in the FriendStatus table for covering whether something has been request, accepted, denied, ignored etc. The Timestamp field is standard in my design to indicate record creation (it is a pattern thing that is used in by base persistence class) and its kind of duplicated in this table as the Person1RequestTimestamp contains the same data. I also capture when the Person2 saw the request and made an action (which gets indicated in FriendStatusId) on it and store that in the Person2AcknowledgeTimestamp).

One of the core assumptions of this design can be stated that Person1 requested friendship of Person2 - if that friendship is accepted then the friendship is considered mutual.

link|improve this answer
Looks nice - but what is that ChangeUser field? – Jeffrey Dec 18 '08 at 21:32
Looks solid- I think it falls under the "activity" sort of friendship though. i.e.: Friends are defined by the request for friendship, not the state of the friends. – Zachary Yates Dec 18 '08 at 22:19
ChangeUser is the username of the person who last changed this record, be it the person invoking its creation, accepting it or a site moderator making some change. It is intrinsic to the persistence pattern I am using – keithwarren7 Dec 18 '08 at 22:42
feedback

Probably over the top but one can use the semantic web to model this. One can use the FOAF (FOAF Friend of a Friend)-format.

link|improve this answer
Sounds interesting. I googled it but I'm not sure I got good results. Do you have a link? – Zachary Yates Dec 18 '08 at 22:17
feedback

Perhaps add a Relationship table, put the relationship properties there, and reference it from UserFriend.

link|improve this answer
Good point, I think I like the "Type" idea. I'll probably put an enum together that represents that. – Zachary Yates Dec 18 '08 at 22:16
Hey, if you like it... upmod it :) – rjurney Dec 19 '08 at 23:40
feedback

Friendships are less clear cut than the classic employer/boss and user/spouse self-join scenarios. Is friendship a relationship or an activity? I've received a fair amount of criticism for neglecting the latter. Either way, you're probably going to need more than one table, no matter how generic your data model is.

link|improve this answer
feedback

Do you actually need a physical table to discover if there are mutual friends? Why not do a SQL query like:

SELECT U.ID, U.NAME FROM USER U INNER JOIN USERFRIEND UF ON U.ID = UF.FRIENDID WHERE U.ID = (SELECT USER.ID FROM USER WHERE USER.ID = friend_id AND USER.ID != your_id);

The query's results should return all of the mutual friends.

link|improve this answer
feedback

Hi I have a Semester project of SOCIAL NETWORKING WEBSITE, and I've planned to design a dynamic but secure database schema for it.

USERS table will have a record of all the registered users and will also insert a unique id for each user.

According to this id for each individual user I will CREATE 2 tables :

  1. ID_friends : this will have the list of all the friends having foreign key to each user.
  2. ID_scraps : this will have the list of the scraps submitted by the friends to the user.

For more information please have a visit to my subDomain : http://satyendra070091.freetzi.com

Regards.... Satyendra Kumar Sharma BTech (III) CS SRMSCET, Bareilly

link|improve this answer
feedback

What do you think about my solution?

You have 3 tables

1 the user (id,.etc) 2 friend_request(id,flaggerID,flaggedID) 3 friend(id,frienderID,friendedID)

You sign in>check if im in friend table?if yes list friends(im in friender>list friended)(im in friended>listfriender) do i have request?(am i in flaggedID?)know him?if no> delete record if yes >create new record in request as me get putted in flagger and the flagger get in flagged.Now we have mutuality between 2 records in request table so we delete both and put them in friend table. easy to separate req/friends

link|improve this answer
feedback

I did it like this :

TABLE user

id  name
-----------
1   foo
2   roo
3   shoo
4   mooo

TABLE friend relation

id   u_id f_id
--------------
1    1    2
2    2    1
3    3    1
4    1    3

Everytime friend request accepted insert reverse manner 1 2 & 2 1 and simple query:

$ufq=mysql_query("SELECT t1.f_id,t2.id,t2.name FROM friends AS t1, user AS t2 WHERE t1.u_id='$u_id' AND t2.id=t1.f_id ORDER BY t2.name ")or die(mysql_error());
while($fn=mysql_fetch_array($ufq)){
    echo $fn["name"].'<br>';
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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