0
How to stop to migrate default app of django in multi connection
suppose I have two connection 1. default(database : db1) and 2. another_conn(database : db2) for application my_app. I want not to create default apps tables (user, session and content it should be created in default con) in db2 while running migration command (python manage.py migrate --database=another_conn) of Django in database.
2 Respuestas
0
you might be looking for this!
https://stackoverflow.com/questions/32531350/django-1-8-run-a-specific-migration
0
not exactly.. any way thanks.have you ever tried this?