5.14. Models Migration

  • Database schema migration

5.14.1. Makemigrations

$ python manage.py makemigrations
Migrations for 'shop':
  myproject/shop/migrations/0001_initial.py
    - Create model Customer

5.14.2. Migrate

$ python manage.py migrate
Operations to perform:
  Apply all migrations: admin, auth, contenttypes, shop, sessions
Running migrations:
  Applying shop.0001_initial... OK