想要添加一列作为现有表的外键

发布于 2024-11-18 11:47:35 字数 229 浏览 2 评论 0原文

在我的 Django 应用程序 models.py 中,我最近添加了这个字段。

 Class Client
     user  = models.ForeignKey(User)

我想将mysql中的这个字段添加到现有表中。问题是我不知道处理外键的命令。我想要添加此列的表的名称称为 tiptop_clients

In my Django app, models.py, I have this field that I have just recently added.

 Class Client
     user  = models.ForeignKey(User)

I want to add this field in mysql to an existing table. Problem is I don't know the command for dealing with foreign keys. The name of my table that I want to add this column is called tiptop_clients.

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

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

发布评论

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

评论(2

謸气贵蔟 2024-11-25 11:47:35

您可以使用 sqldiff -命令 django-extensions

扫描所有模型的 Django 命令
对于给定的应用程序名称并进行比较
有真实的数据库模式
数据库表。

它指示如何在
数据库与SQL不同
这将由 Django 生成。
该命令不是数据库
迁移工具。虽然可能会
期间肯定会有帮助
迁徙。其目的是为了展示
当前的差异作为一种方式
检查或调试您的模型
与真实数据库表相比
和列。

You could use the sqldiff-command of django-extensions:

Django command that scans all models
for the given appnames and compares
there database schema with the real
database tables.

It indicates how columns in the
database are different from the SQL
that would be generated by Django.
This command is not a database
migration tool. Though it might
certainly be of help during
migrations. It’s purpose is to show
the current differences as a way to
checking or debugging your models
compared to the real database tables
and columns.

樱娆 2024-11-25 11:47:35

您将遇到的第一个问题是如何处理现有数据?对于已创建的任何客户端,用户是否应该为 NULL?您会更新所有表格来处理这种情况吗?

您可以查看 South 项目来处理添加该列,但是你可能想看看这个相关的Stack Overflow有人想要的问题添加用户使用现有模型。

最后,他们认为从头开始比硬塞外键更容易。

The number one problem you are going to have with this is what do you do with the existing data? Should the user be NULL for any Client already created? Will you update all of your forms to handle that case?

You can take a look at the South project to handle adding that column, but you may want to look at this related Stack Overflow question where someone wanted to add User to an existing model.

In the end they decided it was easier to just start from scratch then to shoehorn the ForeignKey in.

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