|
|
|
|
|
by emptysea
869 days ago
|
|
The problem with Django simple history and similar is they use Django signals and aren’t transactional. So if you have any bulk updates or things that don’t trigger signals, your SOL, and your history starts missing things A more robust solution would use triggers or an ORM with more transactional guarantees (aka not using signals) |
|