How to Use Django Migrations
Django migrations allow you to change the schema of the database that powers a Django web app.
However, they are often misunderstood - especially by developers who are new to the Django web framework.
This tutorial will teach you everything you need to know about how to use Django migrations.
Table of Contents
You can skip to a specific section of this Django migrations tutorial using the table of contents below:

  • What are Django Migrations?
  • How to Use Migrations
  1. Creating and Configuring the Project and Applications
  2. Populating the Model
  3. Initial Migration
  4. Subsequent Migrations
  5. Listing Migrations
  6. Rolling Back Migrations
  7. Naming Migrations
  • Final Thoughts

#django migrations #django #subsequent migrations

How to Use Django Migrations
1.15 GEEK