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_id
和HistoricalRecords()
?
编辑:尝试过以下解决方案:link