Opened 17 years ago

Last modified 17 years ago

#6366 closed

Meta field get_latest_by does not support fields with a - (Do get decending order) — at Initial Version

Reported by: Shabda Owned by: nobody
Component: Core (Other) Version: dev
Severity: Keywords: Models, Meta
Cc: shabda.raaj@… Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Model objects have a order_by method to order, which can take arguments of the form '-attribute_name' to get descending order ordering. This syntax is not supported by get_latest_by in Meta.

Code to validate this,

class FeaturedPage(models.Model):

ordering = models.IntegerField(default = 0, unique = True)

featured_pages = FeaturedPage.objects.all().order_by('-ordering')

This works, but if you add

class Meta:

get_latest_by = '-ordering'

and do FeaturedPage.objects.latest(),
It raises OperationalError.

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top