Simply null=True
defines database should accept NULL
values, on other hand blank=True
defines on form validation this field should accept blank values or not(If blank=True
it accept form without a value in that field and blank=False
[default value] on form validation it will show This field is required error.
null=True/False
related to database
blank=True/False
related to form validation