This Rule is just not True.
Blank Field is only validation related, when you are using forms, it has nothing to do with database.
Delete this rule thanks.
Hello Jaime, and welcome to the Sonar community!
Indeed, allowing a field to be blank will change the behavior of form validation, and as a result, allow empty strings to be entered into the database as valid values. Having null=False will in addition eliminate the confusion between having null and “” represent the absence of a value.
While I understand that these concern two different components of the framework, we believe that avoiding using null=True
and using blank=True
instead remains the best practice. This is also the recommendation given in the Django documentation.
Acknowledging the possibility, however, that I could be missing some details, could you maybe provide me with an example of a use case where our suggestion could prove to be problematic?
Thank you in advance for the clarification.
Best,
Jeremi