We have the model House with the fields street, house_number, apartments:
class House(models.Model):
apartments = models.IntegerField()
house_number = models.IntegerField()
street = models.CharField(max_length=64)
Update the available apartments on Wall st., 45. The new number of the available apartments is 35.