[Django]-Prevent slow INNER JOIN in Django model calls when unnecessary

3👍

The solution turned out to be removing a class Meta option:

class Book(models.Model):

    (...)

    class Meta:
        ordering = ['author', 'title']

Leave a comment