Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 397777
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T16:41:00+00:00 2026-05-12T16:41:00+00:00

I am currently using Django Users model. Very simple. However, I’d like to add

  • 0

I am currently using Django Users model.
Very simple. However, I’d like to add one feature: Adding friends!

I would like to create 2 columns in my table:

UID (the ID of the User)
friend_id (the ID of his friend! …of course, this ID is also in Django’s User model.
The UID-friend_id combination must be unique! For example, if my ID is 84, I cannot have two rows the same, because I can only subscribe to the same friend once.

Can anyone tell me if this is the right way to do it? Should I do some KEY relationship for the “friend_id”, or should I leave it like this, as “IntegerField”?

class Friend(models.Model):
    uid = models.ForeignKey(User)
    friend_id = models.IntegerField(default=0)

Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T16:41:00+00:00Added an answer on May 12, 2026 at 4:41 pm

    You should create a model that defines the relationship between two users, and then define two foreign-key fields, each one to a User. You can then add a unique constraint to make sure you don’t have duplicates.

    There is a article here explaining exactly how to do this: http://www.packtpub.com/article/building-friend-networks-with-django-1.0

    The example model from that page:

    class Friendship(models.Model):
      from_friend = models.ForeignKey(
        User, related_name='friend_set'
      )
      to_friend = models.ForeignKey(
        User, related_name='to_friend_set'
      )
      def __unicode__(self):
        return u'%s, %s' % (
          self.from_friend.username,
          self.to_friend.username
        )
      class Meta:
        unique_together = (('to_friend', 'from_friend'), )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 207k
  • Answers 207k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The problem was with my syntax. Instead of REFERENCES `table`.`col`… May 12, 2026 at 9:19 pm
  • Editorial Team
    Editorial Team added an answer If you've already looked at the stack trace then I… May 12, 2026 at 9:19 pm
  • Editorial Team
    Editorial Team added an answer Assuming you don't put another (non-runat="Server") form tag on this… May 12, 2026 at 9:19 pm

Related Questions

I'm struggling a little to work out how to follow the relation and count
Currently, django.contrib.comments sends the user to the preview page if there is any error
I am using the standard User model (django.contrib.auth) which comes with Django. I have
I am trying to add a dynamic Meta attribute to all of my Django
When using localized list of choices for a model field, the admin doesn't show

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.