I got this error ModuleNotFoundError: No module named 'django.db.migrations.migration' after i tried these below steps
python3 manage.py migrate --fake resources zero
(resources is my app name)find . -path "*/migrations/*.py" -not -name "__init__.py" -delete
find . -path "*/migrations/*.pyc" -delete
python3 manage.py showmigrations
Note: used PostgreSQL
How to resolve this issue?