保存時にデータベースに複製されていないことを確認するために、同じ (content_type と object_id) のレコードが追加されていることを確認する必要があります。
class objectHere(models.Model):
"""
Notes:
See: http://www.screamingatmyscreen.com/2012/6/django-and-generic-relations/
"""
content_type = models.ForeignKey(ContentType, help_text="Represents the name of the model")
object_id = models.PositiveIntegerField(help_text="stores the object id")
content_object = generic.GenericForeignKey('content_type', 'object_id')
reason = models.CharField(max_length=60)
request_made = models.DateTimeField(auto_now_add=True,
help_text="Shows when object was created.")
私はpre_saveで何かをすることを考えていましたか? これを行うことができますか?