在 Django 中更新模型的正确方法

发布于 2025-01-02 04:13:29 字数 206 浏览 0 评论 0原文

我不断修改 Django 中的模型。但是,完成此操作后,我必须进入数据库,手动删除表,然后 manage.pysyncdb。我尝试 manage.py reset <> 但它没有下降,然后使用新字段重新安装模型。执行此操作的正确方法是什么,或者进入数据库、删除然后同步数据库的最佳方法是什么?

I keep modifying my model in Django. However after I do it I have to go into the database, delete the table manually and then manage.py syncdb. I tried manage.py reset <<app_name>> but it doesn't drop then reinstall the model with the new fields. What is the proper way to do this or is the best way to go into the database, delete, then syncdb?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹤舞 2025-01-09 04:13:29

文档中明确提到了您描述的行为:

syncdb只会为尚未创建的模型创建表
安装。它永远不会发出 ALTER TABLE 语句来匹配更改
安装后制作为模型类。模型类的更改和
数据库模式通常涉及某种形式的歧义,并且在这些情况下
在这种情况下,Django 必须猜测要做出的正确更改。
在此过程中存在关键数据丢失的风险。

您需要的是一个数据库迁移工具,是一个大问题大部分已解决;-)

所以,是的,正如 Marcin 所说,您正在寻找
或者,您可以尝试Nashvegas,甚至进行一些小的更改sql_diffdjango-extensions 是一个可行的选择。

The behaviour you describe is explicitly mentioned in the docs:

syncdb will only create tables for models which have not yet been
installed. It will never issue ALTER TABLE statements to match changes
made to a model class after installation. Changes to model classes and
database schemas often involve some form of ambiguity and, in those
cases, Django would have to guess at the correct changes to make.
There is a risk that critical data would be lost in the process.

What you are after is a tool for database migrations and that is a large problem mostly solved ;-)

So yes, as Marcin said, your are looking for South.
Alternatively you could try Nashvegas and for small changes even sql_diff which is part of django-extensions is a viable option.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文