Недавно я добавил модель в свое приложение (UserProfile), и когда я нажал изменения в Heroku, я, кажется, случайно запустил heroku run python manage.py makemigrations
. Теперь, когда я пытаюсь запустить heroku run python manage.py migrate
, я получаю ошибку ниже
(leaguemaster) benjamins-mbp-2:leaguemaster Ben$ heroku run python manage.py migrate
Running `python manage.py migrate` attached to terminal... up, run.1357
Operations to perform:
Synchronize unmigrated apps: allauth
Apply all migrations: auth, admin, socialaccount, sites, accounts, account, contenttypes, sessions, leagueapp
Synchronizing apps without migrations:
Creating tables...
Installing custom SQL...
Installing indexes...
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.
Как это исправить? Пожалуйста, помогите!