I have the follow project structure:
MyProject
|--myBaseApp
| |--migrations
| |--__init__.py
| |--models.py
| |...
|--myClientApp
| |--migrations
| |--__init__.py
| |--models.py
| |...
|--myProject
| |--__init__.py
| |--settings.py
| |--urls.py
| |...
|--manage.py
|...
I can import to myClientApp/models.py
the models.py
from myBaseApp
, but when I use the commands on terminal mode:
python manage.py makemigrations
python manage.py migrate myClienteApp
The Django creates, on data base, all tables from models.py
, both myClienApp/models.py
and myBaseApp/models.py
. I'd like to make migrate only the models.py
from myClienApp/models.py
. It's possible? Or do I need to create other project?