私はHerokuのherokuはどのようにpython manage.pyを移行するのですか?
ステップで簡単なDjangoアプリケーション展開:その後、私は
- heroku run python manage.py migrate
を実行しますが、私は受け取っ
0002_main.py:
- Create model Comment
- Remove field status from match
- Remove field quantity from slot
- Add field avatar to account
- Add field slots to match
- Alter field verification_code on account
- Alter field verification_code on slot
- Add field match_object to comment
- Add field user to comment
- Alter index_together for comment (1 constraint(s))
:
影響しているように見える- git push heroku master
- heroku run python manage.py makemigrations (or + app_name)
を
Running migrations:
No migrations to apply.
Your models have changes that are not yet reflected in a migration, and so won't be applied.
Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
私は移行ファイルを見逃してしまった、私はちょうど英雄でmakemigrationsを走らせた –