django south做数据库迁移

1. setting.py INSTALLED_APPS add south
2. python manage.py schemamigration mysite --initial
3. python manage.py convert_to_south mysite
4. change model.py
5. python manage.py schemamigration mysite --auto
6. python manage.py migrate mysite --delete-ghost-migrations

你可能感兴趣的:(django south做数据库迁移)