我只是将models.py 的位置更改为另一个应用程序的目录。现在当使用南进行迁移时,它说:
D:\logos-education-system>manage.py schemamigration core --auto
You cannot use automatic detection, since the previous migration does not have t
his whole app frozen.
Either make migrations using '--freeze core' or set 'SOUTH_AUTO_FREEZE_APP = Tru
e' in your settings.py.
D:\logos-education-system>
不知何故,South 无法将 models.py(在新文件夹中)与数据库中已有的数据相关联并从那里继续。
所以,我的问题是:我如何让南忘记models.py所在的旧文件夹并以南认为一直存在的方式使用新文件夹?
提前致谢。