Search code examples
postgresqlpython-3.5django-migrationsdjango-1.8django-postgresql

how to specify an app to migrate to a schema django


I recently did an inspectdb of our old database which is on MySQL. We want to move to postgre. now we want the inspection to migrate to a different schema is there a migrate command to achieve this? so different apps shall use different schemas in the same database


Solution

  • so simple!

    python manage.py migrate "app_name"