zoukankan      html  css  js  c++  java
  • 执行manage.py syncdb提示Unknown command: 'syncdb'

    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
    
  • 相关阅读:
    ubuntu安装iscsi
    函数模板的trick
    EF-Code First(5):二级缓存
    了解线程的属性及方法
    算法--中位数计算
    实习面试
    长轮询实现Chat并迁移到Azure测试
    非聚集索引及其性能优化
    架构设计方案
    大话数据结构-图
  • 原文地址:https://www.cnblogs.com/hester/p/5615747.html
Copyright © 2011-2022 走看看