show/hide this revision's text 2 title more readable

Not null ForeignKey('self')of yourself (before insert)

How can I make a ForeignKey refer back to the object itself? I'm trying :

Alias(MyBaseModel):
    type = models.ForeignKey('self')

a = Alias()
a.type = a
a.put(a.save()

But then when I run it :

(1048, "Column 'type_id' cannot be null")

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?

show/hide this revision's text 1

Not null ForeignKey('self') of yourself (before insert)

How can I make a ForeignKey refer back to the object itself? I'm trying :

Alias(MyBaseModel):
    type = models.ForeignKey('self')

a = Alias()
a.type = a
a.put()

But then when I run it :

(1048, "Column 'type_id' cannot be null")

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?