I got this following error while running the django project.
SystemCheckError: System check identified some issues:
ERRORS:
auth.User.groups: (fields.E304) Reverse accessor 'Group.user_set' for 'auth.User.groups' clashes with reverse accessor for 'restaccount.DriverUser.groups'.
HINT: Add or change a related_name argument to the definition for 'auth.User.groups' or 'restaccount.DriverUser.groups'.
auth.User.user_permissions: (fields.E304) Reverse accessor 'Permission.user_set' for 'auth.User.user_permissions' clashes with reverse accessor for 'restaccount.DriverUser.user_permissions'.
HINT: Add or change a related_name argument to the definition for 'auth.User.user_permissions' or 'restaccount.DriverUser.user_permissions'.
restaccount.DriverUser.groups: (fields.E304) Reverse accessor 'Group.user_set' for 'restaccount.DriverUser.groups' clashes with reverse accessor for 'auth.User.groups'.
HINT: Add or change a related_name argument to the definition for 'restaccount.DriverUser.groups' or 'auth.User.groups'.
restaccount.DriverUser.user_permissions: (fields.E304) Reverse accessor 'Permission.user_set' for 'restaccount.DriverUser.user_permissions' clashes with reverse accessor for 'auth.User.user_permissions'.
SOLUTION:
The following error indicates that the relation with model 'AUTH_USER_MODEL', which is not installed in settings.py. Settings.py: Add the 'AUTH_USER_MODEL'