What is migration in django ?
Answer / Avkash Kumar
In Django, migrations are files that describe database schema changes for your app. They enable you to safely upgrade, downgrade or refresh the state of your database.nnWhen you make changes to your models (for example by adding a field), Django creates a new migration that describes these changes. These migrations can then be applied to update the database.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are templates in django?
how the django will work without installing any webserver?
How to create an constant in django?
Why is csrf important?
What is render_to_response in django?
Is white noise harmful?
Can i Connect plsql to django ?
Is django a content management system (cms)?
What are the advantages of using django?
Explain the inheritance styles in django?
How is compile-time and run-time code checking done in python ?
Is django a high-level web framework or low-level framework?