I'm curious to know if anyone else has come across this situation:
I've got a django model with a standard CharField
and an hstore field:
class MyModel(models.Model):
name = models.CharField()
data = hstore.DictionaryField()
When I save changes to MyModel
, the name
is correctly tracked via django-reversion but data
is not (i.e., when I revert to an old version, the name is correctly reverted but the data remains the most current version).