Comment on Optimizing Postgres table layout for maximum efficiencyComments−mococa1yCould the Django ORM deal with this?−sgarland1yYes, but it doesn’t that I’m aware of. Certainly able to override the classes yourself, though. Make a lookup table of column type / length and then reorder based on that.−jbkkd1yIt can't right now, but this is a doable extension
Comments
Could the Django ORM deal with this?
Yes, but it doesn’t that I’m aware of. Certainly able to override the classes yourself, though. Make a lookup table of column type / length and then reorder based on that.
It can't right now, but this is a doable extension