I'm defining a relationship in my class and I need to apply a nullslast
to the order_by. How would I do this in the relationship or is there another way to go about it?
flags = relationship("Flag",
backref=backref("box", lazy="select"),
cascade="all,delete,delete-orphan", order_by="Flag._order",
)