I tried to use django-hstore using this nice tutorial. I added two classes to an existing app managed by South:
clas
Django now includes a migration operation to create the hstore extension in PostgreSQL:
from django.contrib.postgres.operations import HStoreExtension class Migration(migrations.Migration): ... operations = [ HStoreExtension(), ... ]