1👍
✅
You should not set the value to "null"
, set it to None
:
loggedInUser.Birthday = None
loggedInUser.save()
For this to work Birthday
model field show be defined with null=True
.
See also:
Source:stackexchange.com