I'm not able to deploy to Heroku because of a "models have changes that are not yet reflected in a migration" message. My application migrations are current. The problem is that, for some reason, a migration for the wagtailstreams package in the following directory wasn't deployed:
.heroku/python/lib/python3.6/site-packages/wagtailstreamforms/migrations/
I tried adding MIGRATION_MODULES = {'wagtailstreamforms': 'myapp.wagtailstreamforms_migrations'}
to my base.py, running makemigrations wagtailstreamforms
and deploying again but Heroku still did not run any migrations and still reported that the same model had changes not reflected in a migration.
What is the strategy for updating migrations in libraries like wagtailstreamforms which are not part of my git directory?