skip to Main Content
65 views
0 votes

Postgresql – Django prefetch_related on ForeignKey relation

I have this database setup:
class Profile(AbstractBaseUser, PermissionsMixin):
email = models.CharField(max_length=30, null=True, unique=True)

Back To Top
Search