django-simple-history 在存在现有历史记录时填充历史记录

django-simple-history populate history when existing history present

使用 django-simple-history 为模型设置历史记录后,我想 运行 populate_history 根据 [=] 的现有内容填充历史记录 table 18=]。但是,其他用户已经进行了一些更改,导致历史记录 table 被部分填充。 运行 populate_history --auto 只会导致消息 Existing history found, skipping model.

我希望保留现有历史记录,但为当前未存储在历史记录中的所有记录填充历史记录。有办法吗?

我最终编写了一个基于 populate_history 的修改脚本。它识别出所有没有历史记录的对象,并将它们添加到历史记录中table。下面是一个简单的版本(没有批处理)。

from django.apps import apps

from simple_history.utils import get_history_manager_for_model, get_history_model_for_model

def populate_model_history(model):
  history = get_history_model_for_model(model)
  history_manager = get_history_manager_for_model(model)

  # Insert historical records for objects without existing history
  # NOTE: A better approach would be to do this in batches, as in populate_history.py
  for instance in model.objects.exclude(pk__in=history.objects.values_list(model._meta.pk.name)):
    history_manager.bulk_history_create([instance], batch_size=1)

model = apps.get_model('app', 'my_model')
populate_model_history(model)