I am working with mult-tenant setup in django.I have multiple databases for which I am looking for a way to run a migration across all the databases linked in my settings.py file in one go.
Currently, I have to do
python manage.py migrate --database=db_name
for all the databases one by one.