Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between null=True and blank=True in Django?

When we add a database field in django we generally write:

models.CharField(max_length=100, null=True, blank=True) 

The same is done with ForeignKey, DecimalField etc. What is the basic difference in having

  1. null=True only
  2. blank=True only
  3. null=True, blank=True

in respect to different (CharField, ForeignKey, ManyToManyField, DateTimeField) fields. What are the advantages/disadvantages of using 1/2/3?

like image 392
user993563 Avatar asked Dec 22 '11 20:12

user993563


People also ask

What is NULL true Django?

If a string-based field has null=True , that means it has two possible values for “no data”: NULL , and the empty string. In most cases, it's redundant to have two possible values for “no data;” the Django convention is to use the empty string, not NULL .

What is difference between blank and NULL?

In particular, null values must be distinguished from blank values: A null database field means that there is no value for a given record. It indicates the absence of a value. A blank database field means that there is a value for a given record, and this value is empty (for a string value) or 0 (for a numeric value).

Is NULL false by default Django?

Field.null If True , Django will store empty values as NULL in the database. Default is False . Note that empty string values will always get stored as empty strings, not as NULL . Only use null=True for non-string fields such as integers, booleans and dates.

Is blank True or false?

null=False, blank=True.


1 Answers

null=True sets NULL (versus NOT NULL) on the column in your DB. Blank values for Django field types such as DateTimeField or ForeignKey will be stored as NULL in the DB.

blank determines whether the field will be required in forms. This includes the admin and your custom forms. If blank=True then the field will not be required, whereas if it's False the field cannot be blank.

The combo of the two is so frequent because typically if you're going to allow a field to be blank in your form, you're going to also need your database to allow NULL values for that field. The exception is CharFields and TextFields, which in Django are never saved as NULL. Blank values are stored in the DB as an empty string ('').

A few examples:

models.DateTimeField(blank=True) # raises IntegrityError if blank  models.DateTimeField(null=True) # NULL allowed, but must be filled out in a form 

Obviously, Those two options don't make logical sense to use (though there might be a use case for null=True, blank=False if you want a field to always be required in forms, optional when dealing with an object through something like the shell.)

models.CharField(blank=True) # No problem, blank is stored as ''  models.CharField(null=True) # NULL allowed, but will never be set as NULL 

CHAR and TEXT types are never saved as NULL by Django, so null=True is unnecessary. However, you can manually set one of these fields to None to force set it as NULL. If you have a scenario where that might be necessary, you should still include null=True.

like image 90
Chris Pratt Avatar answered Oct 14 '22 19:10

Chris Pratt