Does a custom user model require first_name and last_name fields

2020-01-20 Thread graeme
I have people's first names and last names in another model (because not all people in the DB are users). Therefore if I store names in the user model I will duplicate data. I think the right solution is to remove the first_name and last_name user models from the custom user model. Will this ca

Re: Does a custom user model require first_name and last_name fields

2020-01-20 Thread Suraj Thapa FC
Ofcourse you can... It will not create any problem On Mon, 20 Jan 2020, 10:49 pm graeme, wrote: > I have people's first names and last names in another model (because not > all people in the DB are users). Therefore if I store names in the user > model I will duplicate data. > > I think the righ