Not null ForeignKey('self') - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T09:11:53Zhttp://stackoverflow.com/feeds/question/1077130http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077130/not-null-foreignkeyself0Not null ForeignKey('self')Paul Tarjan2009-07-02T23:07:04Z2009-07-03T14:57:14Z
<p>How can I make a ForeignKey refer back to the object itself? I'm trying :</p>
<pre><code>Alias(MyBaseModel):
type = models.ForeignKey('self')
a = Alias()
a.type = a
a.save()
</code></pre>
<p>But then when I run it :</p>
<pre><code>(1048, "Column 'type_id' cannot be null")
</code></pre>
<p>I don't want the type to be null, I want it to contain its own ID. I have tons of objects, but only 1 loops back to itself, so I really don't want tot make it null. Ideas?</p>
http://stackoverflow.com/questions/1077130/not-null-foreignkeyself/1077269#10772692Answer by TokenMacGuy for Not null ForeignKey('self')TokenMacGuy2009-07-02T23:56:24Z2009-07-02T23:56:24Z<p>The problem is that when you did <code>a.type = a</code>, a did not yet exist in the database, therefore it has no pk. </p>
<p>One way around this is to save twice, first to save it into the database, referring to a dummy object that's already in the database, then save it again once you can get it from the database. One problem with this is there's sort of a chicken and egg problem of actually getting such an object into the database in the first place. I'd deal with this by means of creating a fixture to run each time you use sync-db, so that one such object exists and is valid. </p>
<p>Another option is to relax the not-null constraint and be diligent about getting them assigned. </p>
<p>Either way, inserting into such a table will always be a pain because you can't get the PK to use without first inserting, and you can't insert without having a key to use in the reference field, regardless of ORM or database or anything. </p>
<p>an alternative solution is to break the circular dependency and do something like: </p>
<pre><code>AliasType(django.db.Model):
pass
Alias(MyBaseModel):
type = models.ForeignKey(AliasType)
a = Alias()
a_t = AliasType()
a_t.save()
a.type = a_t
a.save()
</code></pre>
<p>You can still get useful information by using django's very smart accessors, </p>
<pre><code>AliasType.objects.all()[0].alias_set
</code></pre>
<p>which can get you back to the original Alias object without having an explicit link to it. </p>
http://stackoverflow.com/questions/1077130/not-null-foreignkeyself/1079730#10797301Answer by drozzy for Not null ForeignKey('self')drozzy2009-07-03T14:57:14Z2009-07-03T14:57:14Z<p>Shouldn't your type field be <em>null=True, blank=True</em>? Otherwise what is your base case?
I mean if you only have one object in the db what is it's type?</p>
<p>Having the object loop onto itself can be overcome by adopting a convention that an empty <strong>type</strong> field means exactly that - that object refers to itself!</p>
<p>If <strong>type</strong> field is not empty, that means it refers to another Alias object, which works out just peachy.</p>
<p>Your question does not make sense at the algorithmic level (unless i am missing something), so how can you make it work in db?</p>
<pre><code>Alias(MyBaseModel):
type = models.ForeignKey('self', blank=True, null=True)
a = Alias()
a.save()
# Now a refers to itself
b = Alias()
b.type = a
b.save()
# b does not refer to itself, but rather a
</code></pre>
<p>I know I redefined the problem a little, so sorry if that's not what you are after! Cheers.</p>