I have a model called SimplePage in which I have this line:
category = models.ForeignKey('Category', related_name='items', blank=True, null=True)
I assumed that this would allow me to have SimplePage instances that have no category.
But for some reason, when I try to create SimplePage in Admin without a category, I get:
IntegrityError at /admin/sitehelpers/simplepage/add/ sitehelpers_simplepage.category_id may not be NULL
What is it?
source share