I'm building a DRF app with Django-rest-auth implemented for social login. The problem I'm having now is that I want to extend my User Model, but I'm afraid if I change the User Auth Model migrations will complete destroy my project due to the rest-auth link.
So my option is to create a UserData field and hook it to User through a one to one field. However, I'm not sure how to instantiate a new UserData object and link it to the User every time a new user is sign up or created through Django-rest-auth api.
Any help and advice for this would be appreciated.