[Answered ]-Django: When a user profile is created automatically, what is it set to?

1👍

User Profile is no different from any other model. So it behaves exactly like how any other model would behave if you save it to database without specifying all fields. It will have empty fields.
Ofcourse in your case, since you do not allow blank=True, null=True, this will raise an error and require you to specify the fields.

👤zaphod

1👍

They’re empty to start with. You can fill in the fields by manipulating UserInfo like any other model.

Leave a comment