Store informations related to User, but not authorization-related {django}
If you wish to store information related to
User
, you can use aOneToOneField
to a model containing the fields for additional information. This one-to-one model is often called a profile model, as it might store non-auth related information about a site user. For example you might create an Employee model