﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
4260	add an update method to QuerySet	Gary Wilson <gary.wilson@…>	nobody	"One should be able to update multiple records at once with something like

{{{
#!python
User.objects.all().update(is_active=True)
}}}

instead of having to update one at a time with something like
{{{
#!python
for user in User.objects.all():
    user.is_active = True
    user.save()
}}}"		closed	Database layer (models, ORM)	dev		fixed	qs-rf-fixed	ferringb@…	Accepted	1	1	1	0	0	0
