1👍
✅
Simply add blank=True
and make sure there is a default
parameter also:
age = models.CharField(default="no information", max_length=50, blank=True)
Source:stackexchange.com