Keder Nath mallick.

Results 7 comments of Keder Nath mallick.

Hey first of all remove id filed for abstract model class. It actually conflicts the property of modelling. Put this id field into the Projects model. And you can use...

If you use serializers make sure that you have put id fields as a read_only one. Otherwise it will receive the wrong value.

Install django==3.1.14 and install latest djongo module.It will be solved.

My Testing Model Structure 👍 class TestAbs(models.Model): desc = models.CharField(max_length=30,blank=False,null=False) desc1 = models.CharField(max_length=30,blank=False,null=False,default = "default values") desc2 = models.CharField(max_length=30,blank=True,null=True) created_at = models.DateTimeField(auto_now_add=True) updated_at = models.DateTimeField(auto_now=True) class Meta: abstract = True...

See in Django we can use BigIntegerField and set it the primary_key =True. It will work for all.

Can you be more specific ? Like here you are doing joining operation to generate the whole user data on signup_id with base User table provided by django,so according to...