PostgreSQL by default considers NULL values as the highest, and thus sorts them first for descending queries and last for ascending ones.
You can modify this behaviour per query or at index creation by specifying 'NULLS LAST' or 'NULLS FIRST'.
How can I use this in conjunction with the Django ORM, without needing to use raw queries?
I.e. when I add to my query_set something like qs.order_by("-publish_start"), how can I specify sorting for nulls? Or, as an alternative, upon field/index declaration.