I am trying to insert a dictionary into the htore from my python shell and I keep getting this error:
django.db.utils.ProgrammingError: function hstore(text[], i
Django's HStoreField accepts only string values, hence the error: function hstore(text[], integer[]) does not exist.
function hstore(text[], integer[]) does not exist
Try { 'round': '0'} instead of { 'round': 0} from your example.
{ 'round': '0'}
{ 'round': 0}