| 4 | |
| 5 | # Create your models here. |
| 6 | class Link(models.Model): |
| 7 | url = models.URLField() |
| 8 | description = models.TextField(blank=True) |
| 9 | posted_by = models.ForeignKey(settings.AUTH_USER_MODEL, |
| 10 | null=True, |
| 11 | on_delete=models.CASCADE) |
| 12 | |
| 13 | |
| 14 | class Vote(models.Model): |
nothing calls this directly
no outgoing calls
no test coverage detected