gpt4 book ai didi

Django用_id后缀ForeignKey字段

转载 作者:行者123 更新时间:2023-12-03 21:39:31 26 4
gpt4 key购买 nike

假设我的模型中有一个字段 f 如下定义为外键:

f = models.ForeignKey(AnotherModel)

Django 同步数据库时,db 中创建的文件将被称为 f_id , 自动以“_id”为后缀。

问题是我希望数据库中的这个字段与我在模型中定义的完全相同, f在这种情况下。我怎样才能做到这一点?

最佳答案

好吧,原来有一个关键字参数叫做 db_column .如果您希望数据库中名为 'f' 的字段非常简单:

f = models.ForeignKey(AnotherModel, db_column='f')

进一步引用:

The name of the database column to use for this field. If this isn't given, Django will use the field's name.

If your database column name is an SQL reserved word, or contains characters that aren't allowed in Python variable names -- notably, the hyphen -- that's OK. Django quotes column and table names behind the scenes.



https://docs.djangoproject.com/en/2.2/ref/models/fields/#db-column

关于Django用_id后缀ForeignKey字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13116130/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com