I am working on Python / Django and I am trying to use the South to manage my database. It works great in the local environment. The problem occurs when I deploy to Heroku. The problem is that when I create a migration using
$heroku run manage.py schemamigration mydjangoapp
It seems to work (the shell confirmed it), however, I am trying to use migrations, and this will not work. When I do this:
$heroku run python manage.py migrate mydjangoapp
I get this:
The app 'createtuto' does not appear to use migrations
I checked the problem, and it seems that the hero does not allow Sub to create the migration directory in / myDjangoapp / migrations.
Is there anything I can do to make it work?
I tried using convert_to_south, but I got the same results: at first it looks like it worked, but it did not, but did not create the migration.
source share