I have this:
maxAux = Auxi.objects.all().aggregate(Max('nroAux'))
Then I need to add +1 to its value, but doing:
maxAux = maxAux+1
will throw an error since aggregate(max returns a string value like {'nroAux__max': 5} and I only need this number 5.
Please avoid asnwering about id or django default autoincr column. I really need to make additions to my column nroAux. Thanks!!