Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个问题,调试总是说没有这样的表配置文件,但我做了同步数据库并检查了所有连接,除此之外还有什么问题?
最可能的问题是您编辑了模型而 syncdb 实际上并没有修改表。
打开您的数据库客户端并确保它们匹配。否则,删除表并重新同步,你应该会很好
您的模型需要与数据库设置相匹配,否则即将出现混乱。
确保 pythonmanage.py sql myapp看起来与sql: show schema (myapp)
manage.py sql myapp
sql: show schema (myapp)
资料来源:数小时的沮丧:)