DEV Community

Discussion on: The Django Rest Custom User Model and Authentication

Collapse
 
jojipams profile image
jojipams

1) I have an existing user table called user_master. It has more than 10000 existing records which was moved from the legacy system. Instead of using django's defult user table, can I use this table?
2)Second question is can I avoid using django model for managing users. means I will insert the users directly by calling Postgresql function. I want the django login check using the same user_master table.