[Django]-Why are blank and null distinct options for a django model?

4👍

null=False, blank=True is common for CharFields, where a blank answer is stored in the db as a blank string rather than a null. The other way around doesn’t make much sense to use.

For non-string fields, a non-answer is stored as a null, and so you need both.

👤second

71👍

They have two entirely different meanings:

blank: determines whether the field should be validated as required or not in forms. False means the form will generate an error if not provided, while True means empty values are allowed.

null: determines whether the field should be set as NULL or NOT NULL at the DB level. This has nothing to do with form validation.

Some examples:

blank=True, null=False would raise an IntegrityError anytime the field was left blank, if it’s not a CharField or TextField. Those two fields send '' (empty string) rather than NULL to the DB when empty.

blank=False, null=True would always require the field to be filled out in all forms (forms will raise ValidationError on the field), even though the column is allowed to be NULL. However, this only applies to forms. You could manually set the attribute to None and save it outside of a form (in a shell, for example).

Leave a comment