| 14 | |
| 15 | |
| 16 | class Prof2(models.Model): |
| 17 | user = models.OneToOneField(User,on_delete=models.CASCADE) |
| 18 | forget_password_token=models.CharField(max_length=100) |
| 19 | created_at = models.DateTimeField(auto_now_add=True) |
| 20 | |
| 21 | def __str__(self): |
| 22 | return self.user.username |
nothing calls this directly
no outgoing calls
no test coverage detected