[Answered ]-Making a post http request of form data to a database with empty/blank fields

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)

Leave a comment