| 4 | # Create your models here. |
| 5 | |
| 6 | class Profile(models.Model): |
| 7 | user = models.OneToOneField(User,on_delete=models.CASCADE) |
| 8 | auth_token = models.CharField(max_length=100) |
| 9 | is_verified = models.BooleanField(default=False) |
| 10 | created_at = models.DateTimeField(auto_now_add=True) |
| 11 | |
| 12 | def __str__(self): |
| 13 | return self.user.username |
| 14 | |
| 15 | |
| 16 | class Prof2(models.Model): |
nothing calls this directly
no outgoing calls
no test coverage detected