imagine-goku

Results 1 issues of imagine-goku

I have a model called `Books` and an API to add books and update the ratings. ``` class Book(models.Model): name = models.CharField(max_length=200, blank=True, null=True) user = models.ForeignKey(User, on_delete=models.CASCADE) ratings =...