码迷,mamicode.com
首页 > 数据库 > 详细

执行manage.py syncdb提示Unknown command: 'syncdb'

时间:2016-06-25 08:25:46      阅读:543      评论:0      收藏:0      [点我收藏+]

标签:

1. 实验环境

ubuntu14.4 + django1.9.7

2. 问题描述

在配置完数据库mysite/settings.py后,通常需要运行

python manage.py syncdb

为数据库中每个应用建立一个数据库表。
然而如果你安装的Django Version >= 1.9,那么会出现如下问题:

gzxultra@gzxultraPC:~/django_try/mysite$ python manage.py syncdbUnknown command: ‘syncdb‘Type ‘manage.py help‘ for usage.gzxultra@gzxultraPC:~/django_try/mysite$ python manage.py syncdbpython manage.py syncdbUnknown command: ‘syncdbpython‘Type ‘manage.py help‘ for usage.

3. 解决方法

在stackoverflow上找到原因和解决方法:
syncdb is deprecated because of the migration system.
Now you can log your changes using makemigrations. This transforms your model changes into python code to make them deployable to another databases.
After you created the migrations you have to apply them: migrate.
So instead of using syncdb you should use makemigrations and then migrate.

简言之:在Django 1.9及未来的版本种使用migrate代替syscdb.

./manage.py migrate

 

执行manage.py syncdb提示Unknown command: 'syncdb'

标签:

原文地址:http://www.cnblogs.com/hester/p/5615747.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!