2 Field-like classes that aren't really fields. It's easier to use objects that
3 have the same attributes as fields sometimes (avoids a lot of special casing).
6 from django
.db
.models
import fields
8 class OrderWrt(fields
.IntegerField
):
10 A proxy for the _order database field that is used when
11 Meta.order_with_respect_to is specified.