I need to implement this query using django orm:
update table set field=field+1 where id=id
I don\'t whant to use this:
o = mod
You can use update, details can be found in the documentation
update