一般的なリレーションのリンクを解除するには?
Note と Customer のリンクを解除したいだけです。
models.py
class Note(models.Model):
contents = models.TextField()
content_type = models.ForeignKey(ContentType)
object_id = models.PositiveIntegerField()
content_object = generic.GenericForeignKey('content_type', 'object_id')
class Customer(models.Model):
name = models.CharField(max_length=50, unique=True,)
notes = generic.GenericRelation(Note, null=True)
と
>>> cs=Customer.objects.get(pk=1)
>>> cs.notes.all()[0].delete()
しかし、cs.notes.all()[0]
完全に削除されます。
完全に削除したくありません。リンクを解除したいだけ...
私は何をすべきか?