Django Application Migrate issues

Dear Team,

I developed one application and deployed on production with mysql database and successfully run.

After a week do the some chages and deployed on production before moved to production on test server it is working fine than moved to the production.

After that make-migrations and than do the migrate. But message is showing no migrations deducted.

I had check all commands by not resolve my issues. Now we tried to create other models same issues.

How to resolve the issues. Please help me…

Thanks

You only need to do the makemigrations once in development. Once the migration commands have been made, they can be used on every environment where you have your software deployed.
The only part of this you need to do on your non-development environments is the migrate.

Ken

Thanks sir for the immediate response.

Sorry to say sir, I din’t understood scenario.