如何在Django

时间:2018-10-22 20:51:25

标签: django python-3.x django-models django-simple-history

样本模型

from simple_history.models import HistoricalRecords()

class Sample(models.Model):
  company = models.CharField(max_length=100,null=True,blank=True)  
  history = HistoricalRecords()

在上述模型中,我使用了django-simple-history中的HistoricalRecords来保存Sample的每个实例的更改历史记录

问题

history_user无法填充错误消息:**Error** : 1452, 'Cannot add or update a child row: a foreign key constraint fails,REFERENCES auth_user (id)

如何在history_change_reason实例中设置history_user_idHistoricalRecords()

编辑:尝试过以下解决方案:link

0 个答案:

没有答案