[Answer]-South.exceptions.NoMigrations error for Django South

1đź‘Ť

âś…

You shouldn’t be running those commands ON heroku. You should be doing that on your local environment, pushing them to heroku, then running the migrate commands.

It has an “ephemeral filesystem” which probably cleared between those two commands. So south has a record of a 0001 migration, but it doesn’t exist.

I’m not sure why it’s being thrown during the “convert_to_south” command (some new south feature?), but that’s my best guess.

Try doing it locally, committing the migration files, then proceeding to run the migrate commands on heroku.

Leave a comment