X的反向访问器与Y

时间:2017-02-19 06:50:24

标签: python django

以下是models.py类中的两个字段。这两个键是从另一个表的相同键中作为外键引用的。

permenantpincode = models.ForeignKey(Pincodemap, models.DO_NOTHING, db_column='PermenantPincode')
localpincode = models.ForeignKey(Pincodemap, models.DO_NOTHING, db_column='LocalPincode')  # Field name made lowercase.

迁移时显示以下错误。

错误:

  

Volunteer.localpincode :( fields.E304)forverse accessor for   'Volunteer.localpincode'与反向访问者发生冲突   'Volunteer.permenantpincode'。

我该如何解决这个问题?

0 个答案:

没有答案