djangonauts / django-hstore

PostgreSQL HStore support for Django.
http://django-hstore.readthedocs.io/
Other
517 stars 142 forks source link

How can I use "update()", not "save()" with hstore field? #88

Closed pashinin closed 9 years ago

pashinin commented 9 years ago

I'm looking for something like:

Model.objects.filter(pk=f.id).update(debug__v=v)

Where debug is a hstore field, and __v is a key: debug["v"]. I'm looking for this because I want to update hstore field, but do not call post_save functions. (in case of save())

nemesifier commented 9 years ago

Not possible currently.