I need some help designing my database. i am trying to create a
community
site very similar to MySpace, Freindster, etc. I want each of my users
to be
able to add other users as friends. I’m just not sure how to set up my
tables.
I have a User object. I’m guessing I need some other table/model to
handle
the associations between the users. I created an Association model and
said
that User has_many :associations and that Association belongs_to User.
But
that doesn’t seem right.