If you delete migrations inside the data directory, python manage.py makemigrations won't recreate them. You have to specify python manage.py makemigrations data
In more complicated setups with multiple interdependent apps, it won't migrate them at all, even with the explicit option.
If you delete migrations inside the data directory,
python manage.py makemigrationswon't recreate them. You have to specifypython manage.py makemigrations dataIn more complicated setups with multiple interdependent apps, it won't migrate them at all, even with the explicit option.