Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 South manage.py schemamigration 生成的每个迁移文件中,通常都会有一个 south.v2.SchemaMigration 的子类。该类将包含 forwards() 和 backwards() 方法以及模型属性。South 如何使用模型属性?
这称为 ORM 冻结。
我们还使用易于更改的人类可读格式;由于 South 不仅依赖于冻结的模型来重新创建 ORM,还依赖于检测更改,因此能够一次又一次地编辑它们非常有用(如果您将失败的迁移附加到票证上,它也可以作为一个有价值的调试工具)。
http://south.aeracode.org/docs/ormfreezing.html