django south做数据库迁移

来源:互联网 发布:淘宝自学网论坛 编辑:程序博客网 时间:2024/05/17 03:44
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
原创粉丝点击