Class Folder inherits from class Item, which has a foreign key to Folder:
class Item(models.Model):
# some fields
folder = models.ForeignKey('Folder')
class Folder(Item):
# some fields
When I try to run this, I get the error:
app.item: 'folder' has a relation with model Folder, which has either not been installed or is abstract
I thought the correct thing to do here was to put the model name in quotes, which I have done, but it doesn't seem to help. What should I do to make this work?
Edit: Clarified question using meaningful class names