| 7 | |
| 8 | |
| 9 | class Book(models.Model): |
| 10 | category=models.ForeignKey(Category,on_delete=models.CASCADE) |
| 11 | book_title=models.CharField(max_length=100) |
| 12 | |
| 13 | |
| 14 | class Student(models.Model): |
nothing calls this directly
no outgoing calls
no test coverage detected