I have the following model:
class School(models.Model): principal = models.OneToOneField(User, on_delete=models.CASCADE)
The User
User