Reputation: 20261
How can Django be configured not to default fields to not null?
Django defaults all fields created to NOT NULL. Can it be configured to do the opposite, except in the obvious case of key fields?
Upvotes: 0
Views: 132
Reputation: 31991
null=True, blank=True, docs, docs, docs
null=True, blank=True
Upvotes: 1