I'm creating a custom commenting system which can attache comments to any model using the contenttypes GenericForeignKey.
class Comment(models.Model):
body = models.TextField(verbose_name='Comment')
user = models.ForeignKey(User)
parent = models.ForeignKey('self', null=True, blank=True)
created = models.DateTimeField(auto_now_add=True)
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
It is my understanding that when the model the comment is attached to is deleted, the delete should cascade and remove the comment as well.
Unfortunately, this isn't happening and I'm stumped. Are there any common reasons why the default delete behaviour would change?