Benjamin Castor
Results
1
issues of
Benjamin Castor
Lets say you have the following model and want to add history tracking to each FooModel object: ``` from simple_history.models import HistoricalRecords class FooModel(models.Model): id = TimeflakePrimaryKeyBinary() history = HistoricalRecords(...
bug