Hi guys,
thanks for your app, it's cool
I'm trying to use django command dumpdata on my model with hstore.DictionaryField:
urls = hstore.DictionaryField(blank=True, schema=[
{
'name': 'site',
'class': 'URLField',
'kwargs': {
'blank': True
}
}
{
'name': 'facebook',
'class': 'URLField',
'kwargs': {
'blank': True
}
}
])
but command crying with:
CommandError: Unable to serialize database: 'str' object has no attribute 'get'
How I can fix it?
Thanks