A straight forward question:
Is there some easy way to write fixtures (i.e. in JSON format, but I don’t care really) when using models that incorporate PickleFields?
EDIT:
In the end I think I’ll just get rid of fixtures altogether. I’ll use named *.py scripts that will create all the objects for me. I’ve always found fixtures quite cumbersome anyway.
Assuming you are using django-picklefield you can use dumpdata/loaddata just like you would with any other model. Tested it briefly and everything works fine.