While overwriting save()
method is a valid solution. I found it useful to deal with this on a Field
level as opposed to the Model
level by overwriting get_prep_value()
method.
This way if you ever want to reuse this field in a different model, you can adopt the same consistent strategy. Also the logic is separated from the save method, which you may also want to overwrite for different purposes.
For this case you would do this:
class NameField(models.CharField):
# Ensure valid values will always be using just lowercase
def get_prep_value(self, value):
value = super().get_prep_value(value)
return value if value is None else value.lower()
class User(models.Model):
username = models.CharField(max_length=100, unique=True)
password = models.CharField(max_length=64)
name = NameField(max_length=200)
phone = models.CharField(max_length=20)
email = models.CharField(max_length=200)