Django ManyToManyField options
It is possible to give blank=True, null=True
to ManyToManyField without hav开发者_如何学运维ing problems?
Or maybe I doing something wrong with my code..
You don't need null=True
.
blank=True
will make that field optional.
精彩评论