Is django-reversion compatible with django-hstore fields?

78 Views Asked by At

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).

0

There are 0 best solutions below