Django: Migrations generated again after deployment, even though no model changes were made
As part of our project, we made some changes, merged the PRs, and deployed the latest code to our development server. However, after deploying, we noticed that Django is generating new migrations, even though there were no changes made to any of the models in our Django apps.
We’re unsure why this is happening. Could someone help us understand why migrations might be triggered again in this case, and how to prevent unnecessary migrations from being created or detected?
Any guidance would be appreciated!