Skip to content

Поддержка

Nickolai Zhuravlev edited this page Mar 23, 2015 · 1 revision

Если вы изменяете модель, нужно выполнить

  1. Run
#!python
python manage.py schemamigration app_name --auto

to create a migration file for generation N+1. 2. Run

#!python
python manage.py migrate app_name 

to update the database schema and migrationhistory table to generation N+1.

Clone this wiki locally