You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm developing on a local system and deploying on docker for production. Since upgrading and recreating some migrations recently I'm not longer able to migrate the migrations generated on the local dev system on the production system. The related error message:
I think I found the issue: django-q seems to not specify the default_auto_field, so that Django created a migration for that and referenced this created migration within my app migrations. Was a bit tricky to resolve, but finally got it.
Is there a way to avoid this behavior for the future?
Hey there,
I'm developing on a local system and deploying on docker for production. Since upgrading and recreating some migrations recently I'm not longer able to migrate the migrations generated on the local dev system on the production system. The related error message:
Local dev system:
lib/python3.8/sites-packages/django_q/migrations/0014_auto_20210502_1221.py
existsProduction system (Docker container):
lib/python3.7/site-packages/django_q/migrations/0014_auto_20210502_1221.py
is missingNot sure how to deal with this issue, I'm grateful for any help!
The text was updated successfully, but these errors were encountered: