Currently in models.py
I have
class ModelName(models.Model):
rowname = models.CharField(max_length=100, blank = True, unique=True)
This does wonders as far as making sure the same value isn't submitted to the database twice but is there a way that I can have unique not raise an error when the value that is a duplicate is an empty string? Does unique
take an exception argument?