django.db.utils.IntegrityError: UNIQUE constraint failed: accounts_profile.user_id

1 · Vicente G. Reyes · Aug. 15, 2023, 9:36 a.m.
django.db.utils.IntegrityError: UNIQUE constraint failed: accounts_profile.user_id Aug 15 '23 Comments: 1 Answers: 0 0 I'm having issues with registering a user in my project. I have a custom serializer that inherits from the RegisterView of dj_rest_auth. My code is: views.py class ProfileDetail(APIView) def get_object(self, pk): try: return Profile.objects.get(pk=pk) except Profile.DoesNotExist: ...