Describe the bug
The migration django_ledger.0030_alter_accountmodel_role is missing, and when i run makemigrations in my own project it will also create 0030_alter_accountmodel_role migration in django-ledger package, and it make my production code break because it will add a dependency to django_ledger.0030_alter_accountmodel_role in my last migration which is not exists in my production.
To Reproduce
Steps to reproduce the behavior:
- Install django-ledger package version 0.8.3.1
- change to your application models
- makemigrations
- remove all dependencies again
- install django-ledger and other dependencies
- try to run 'migrate' command (python manage.py migrate)
Expected behavior
run migrations without any error