Concept Flow - Field options (max_length, null, blank, default)
Define Field with options
max_length sets max chars
null=True allows DB NULL
blank=True allows empty form
default sets default value
Field ready for use in model
This flow shows how each field option modifies the behavior of a Django model field before it is used.