Make corrections so that the ordering is done in descending order by author's name.
Meta class
Order order
Report a typo
Write a program in Python 3
from django.db import models
class Book(models.Model):
author = models.CharField(max_length=200)
class Meta:
app_label = 'books'
...
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.