如何取消链接通用关系?
我只想取消 Note 和 Customer 的链接。
模型.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]
被完全删除。
我不想完全删除。我只是想取消链接...
我应该怎么办?