vote up 7 vote down star
4

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
flag

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

7 Answers

vote up 5 vote down check
UserRelationship
====
RelatingUserID
RelatedUserID
Type[friend, block, etc]

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

link|flag
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 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 at 18:59
vote up 1 vote down

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|flag
vote up 3 vote down

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|flag
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
vote up 2 vote down

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|flag
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
foaf-project.org and en.wikipedia.org/wiki/FOAF_(software). I have read about it in this book: amazon.com/Semantic-Web-Working-Ontologist-Effect… – tuinstoel Dec 18 '08 at 22:33
vote up 1 vote down

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|flag
vote up 4 vote down

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|flag
vote up 1 vote down

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

link|flag
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

Your Answer

Get an OpenID
or

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