Opened 18 years ago
Last modified 18 years ago
#6366 closed
Meta field get_latest_by does not support fields with a - (Do get decending order) — at Version 1
| 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 (last modified by )
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.
Note:
See TracTickets
for help on using tickets.
fixed formatting it ticket description.