django update field in queryset result code example
Example: update queryset in django
>>> Entry.objects.filter(pub_date__year=2010).update(comments_on=False)
>>> Entry.objects.filter(pub_date__year=2010).update(comments_on=False)