getting error

{"manager":["Invalid pk \"1\" - object does not exist."]}


here is my model class

class Employee(models.Model):

    MANAGER = 'MGR'
    STANDARD = 'STD'


    EMPLOYEE_TYPES = (

        (MANAGER, 'manager'),
        (STANDARD, 'employee')

    )


    role = models.CharField(max_length=25, choices=EMPLOYEE_TYPES)
    name = models.CharField(max_length=100, null=True, blank=True)
    employee_id = models.CharField(max_length=100, null=True, blank=True)
    manager = models.ForeignKey('self', null=True, 
related_name='employee',on_delete=models.CASCADE)


and json data which i am using to save in table

{
  "role":"MGR",
  "name":"John",
  "employee_id" :"IN",
  "manager":1
  
  }




-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/454e6708-d6f6-43ee-8542-85d92a69d1cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to