我需要为我的某个型号定制订购。所以在Meta类中,我使用了以下文档https://docs.djangoproject.com/en/1.7/ref/models/options/#order-with-respect-to
根据该部分末尾的警告说 更改order_with_respect_to
order_with_respect_to添加一个名为的附加字段/数据库列 _order,因此如果您在初始迁移后添加或更改order_with_respect_to,请务必制作并应用适当的迁移。
我添加了order_with_respect_to,
class Meta(object):
order_with_respect_to = 'group'
unique_together = (
('name', 'slug'),
)
然后是
的o / p./manage.py schemamigration app_name --auto
给了我
- Added field _order on search.Filter
Created 0025_auto__del_field_filter__order.py. You can now apply this migration with: ./manage.py migrate search
它添加了字段但是创建了auto__del?