进入shell
python manage.py shell
导入你要迁移的数据表模型类
>>> from apps.cms.models import *
创建表
>>> db.create_all()
效果图