﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
31285	"Inherited model doesn't correctly order by ""-pk"" when specified on Parent.Meta.ordering"	Jon Dufresne	Jon Dufresne	"Given the following model definition:

{{{
from django.db import models

class Parent(models.Model):
    class Meta:
        ordering = [""-pk""]

class Child(Parent):
    pass
}}}

Querying the `Child` class results in the following:

{{{
>>> print(Child.objects.all().query)
SELECT ""myapp_parent"".""id"", ""myapp_child"".""parent_ptr_id"" FROM ""myapp_child"" INNER JOIN ""myapp_parent"" ON (""myapp_child"".""parent_ptr_id"" = ""myapp_parent"".""id"") ORDER BY ""myapp_parent"".""id"" ASC
}}}

The query is ordered `ASC` but I expect the order to be `DESC`.

"	Bug	closed	Database layer (models, ORM)	dev	Normal	fixed			Accepted	1	0	0	0	0	0
