There are two general ways to add additional information to your User object. It’s all well-documented within the Django documentation, Extending the existing User
model and Substituting a custom User
model.
If all you want to do is add a phone field (or other additional fields) then I would recommend the first method of creating a profile model associated with the User model.
Ken