[Django]-Add or change a related_name argument to the definition for 'User.user_permissions' or 'User.user_permissions' did not migrate i'm making crm and i

5👍

The setting is named AUTH_USER_MODEL [Django-doc], not AUTH_USER_MODELS since you can specify exactly one model not multiple ones:

AUTH_USER_MODEL = 'leads.User'

Leave a comment