Python Django 4.2.5 tutorial: Install applications (INSTALLED_APPS) and perform database migration migrate

Configurationsettings.py

Insert image description here

Execute makemigrationsand generate migration files

  • Generate migration
python manage.py makemigrations polls
  • view sql
python manage.py sqlmigrate polls 0001

Insert image description here

Insert image description here

Perform migrateapplication database migration

Insert image description here


links:
https://www.w3cschool.cn/django4/django4-7lsu3lyq.html

Guess you like

Origin blog.csdn.net/a772304419/article/details/133465381