Closed Jibola closed 4 months ago
We can't support ordering on related tables until we support joins. If we can't support joins (or until we can, if it'll be a longer-term goal), we could ignore ordering
if it references a related table.
I temporarily worked around this in the Django fork by commenting out Permission.Meta.ordering
.
We can't support ordering on related tables until we support joins. If we can't support joins (or until we can, if it'll be a longer-term goal), we could ignore
ordering
if it references a related table.I temporarily worked around this in the Django fork by commenting out
Permission.Meta.ordering
.
Good to note. I'd say we will have to put strong efforts into support joins via the $lookup
operator. That or we need to unpack all of the underlying join operations associated with the builtin admin package.
Steps to reproduce
Followed instructions for initial setup from #18. Created my first admin account. From there, I called
python manage.py makemigrations
which worked. Afterward I then calledpython manage.py migrate
which led to this initial error.