How to make a Django ForeignKey optional
Looks like you need to have both blank=True
and null=True
to make a ForeignKey optional in a django model…
Looks like you need to have both blank=True
and null=True
to make a ForeignKey optional in a django model…