I have created a custom user model for my project. I have written a data migration file to copy contents of auth.User to my new custom user table. It doesn\'t seem to work p
You should set AUTH_USER_MODEL = 'auth.User' in settings.py before run this migrate and after this migrate finishes, update the settings.py to AUTH_USER_MODEL = 'custom_auth.User'