Django-south not detecting DB changes

2019-02-15 14:41发布

I have updated our project from svn and I have new migration files. When I use :

./work/manage.py schemamigration mypackage --auto

I have this message:

Nothing seems to have changed.

But the database has changed! Why south couldn't detect any change?

Thanks in advance

1条回答
地球回转人心会变
2楼-- · 2019-02-15 15:21

If you already have the migration files, there is no need to run schemamigration as that just generates the migration files. To apply the migration files to the database, run:

./work/manage.py migrate mypackage --merge

The merge flag will run any missed migrations as a result of an SVN update.

查看更多
登录 后发表回答