我正在使用django-activity-stream创建一个Django应用程序。我在项目中注册了应用程序。不幸的是,应用程序的内置跟随者/关注功能与我的Follow表冲突 - 我想要比库允许更精细的控制。任何人都知道如何禁用该功能或回避此问题?
ERRORS:
actstream.Follow.content_type: (fields.E304) Reverse accessor for 'Follow.content_type' clashes with reverse accessor for 'Follow.content_type'.
HINT: Add or change a related_name argument to the definition for 'Follow.content_type' or 'Follow.content_type'.
actstream.Follow.user: (fields.E304) Reverse accessor for 'Follow.user' clashes with reverse accessor for 'Follow.user'.
HINT: Add or change a related_name argument to the definition for 'Follow.user' or 'Follow.user'.
content.Follow.content_type: (fields.E304) Reverse accessor for 'Follow.content_type' clashes with reverse accessor for 'Follow.content_type'.
HINT: Add or change a related_name argument to the definition for 'Follow.content_type' or 'Follow.content_type'.
content.Follow.user: (fields.E304) Reverse accessor for 'Follow.user' clashes with reverse accessor for 'Follow.user'.
HINT: Add or change a related_name argument to the definition for 'Follow.user' or 'Follow.user'.
关注型号:
class Follow(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE)
content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE)
object_id = models.PositiveIntegerField()
content_object = GenericForeignKey()
答案 0 :(得分:1)
尝试将related_name添加到模型字段中:
class Follow(models.Model):
user = models.ForeignKey(User, on_delete=models.CASCADE,
related_name='my_follow_user')
content_type = models.ForeignKey(ContentType,
on_delete=models.CASCADE,
related_name='my_follow_content_type')
object_id = models.PositiveIntegerField()
content_object = GenericForeignKey()
或类似的东西。
Django Models ref: