I'm seeing weird outputs while trying to order_by booleanfield in postgresql.
I have a boolean field with default=false and I'm using the order_by(-thebooleanfield) and something I see the True value first which is what I expected but something the False values come first.
Do I need to switch to different type? Or there is a correct way to order_by booleanfield in postgresql?
10x