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在数据库上运行的地方,发布了它的初始运行。这是真的?
syncdb
我不明白问题可能是什么。你?
runningsyncdb不会更改数据库中已经存在的任何模型的表(即使您已更改它们)。
为了管理模型的变化,考虑南方
Syncdb 将创建不存在的表,但不会修改现有表。所以在生产环境中运行是相当安全的。但这不是维护数据库模式的可靠方法。查看South包,了解一种在开发和生产之间可靠地维护数据库模式更改的方法。应该是 django 标准的一部分,恕我直言。