vote up 1 vote down star

What is the best way to have many children records pointing to one parent record in the same model/table in Django?

Is this implementation correct?:

class TABLE(models.Model):
    id = models.AutoField(primary_key=True)
    parent = models.ForeignKey("TABLE", unique=False)
flag

2  
Unless I'm missing something, you don't need the id field, that'll be generated for you automatically as an auto-incrementing primary key field. – Dominic Rodger Apr 13 at 18:43
1  
Also, the default value of unique is False, so you don't need that – Dominic Rodger Apr 13 at 18:44

2 Answers

vote up 9 vote down check

Django has a special syntax for ForeignKey for self-joins:

class TABLE(models.Model):
    id = models.AutoField(primary_key=True)
    parent = models.ForeignKey('self')

Source (second paragraph)

link|flag
vote up 2 vote down

Two things:

First, you need to allow the possibility of a null value for parent, otherwise your TABLE tree can have no root.

Second, you need to worry about the possibility of "I'm my own grandpa." For a lively discussion, see here.

link|flag

Your Answer

Get an OpenID
or

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