Okay, how would I do this?
class Example(models.Model): parent_example = models.ForeignKey(Example)
I want to have a model have a foreign
You should use
models.ForeignKey('self')
as mentioned here.