I need, through an update operation, revert a boolean value.
update
boolean
I tried:
Item.objects.filter(serial__in=license_ids).update(re
Not is not supported here. You will have to use Case When
from django.db.models import Case, Value, When Item.objects.filter(serial__in=license_ids ).update(renewable=Case( When(renewable=True, then=Value(False)), default=Value(True)) ) )