[Answered ]-How to run migrations for a specific tenant/schema in Django multi-tenant framework?

1👍

To run a migration for a specific tenant we just need to specify schema_name for the tenant after the command migrate like –schema=schemaname

python3 manage.py migrate --schema=schema_name

Leave a comment