Hello, django users!
I'm using PostgreSQL 9.3.2 with django 1.5.5. I've created a model with JSONField from djorm-ext-pgjson.
After migrating with south I can see my field type is json in postgres.
Then I've put some data and queried for it. On my development laptop I get dict in my json field as I expected.
Then I did the same thing on my test server, same version of DB, django, libraries.
psql shows that field type is json.
But somehow it gives me json field as str.
Is there anyone who might get throw this kind of issue? Or may be you can tell me where do I start digging into this?