I have a form with which I want to update a MyModel object. On the model there is a unique_together constraint, fieldA together with fieldB. In the form in the clean method
In models.py add blank=True.
blank=True
Example:
class myModel(models.Model): myField = models.CharField(max_length=30, blank=True)