Search code examples
djangodjango-south

South: how to apply N migration without applying N-1


If I call manage.py migrate app_name 51 it tries to migrate 50th too, but I don't need that. Will it work and is it OK if I just delete .py file with 50th migration and try again?


Solution

  • So I think the answer is: migrate 50th migration with --fake flag and migrate the next one normally, or yeah I tried to delete the file and it works too.