[Django]-Django ignore ordering parameter on model definition on query

3👍

Documentation is your friend: http://docs.djangoproject.com/en/dev/ref/models/querysets/#order-by-fields

New in Django 1.0: Please, see the release notes

If you don't want any ordering to be applied to a query, 
not even the default ordering,  call order_by() with no parameters.

Leave a comment