I have model call Report:
class Report(models.Model):
owner = models.ForeignKey(User, related_name='report_owner')
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
object_id = models.PositiveIntegerField()
content_object = GenericForeignKey('content_type', 'object_id')
How do I find out what the object_id of my models in all my apps are?