gpt4 book ai didi

python - 为外部导入的表创建 django 模型

转载 作者:行者123 更新时间:2023-12-01 02:25:57 29 4
gpt4 key购买 nike

我是 django 新手,所以如果我完全错了,请原谅。

我安装了 django,其中一些表是从外部源手动导入的。有一张表,其中有大量字段。在我当前的 django 中,我只需要与它的几个字段进行交互。

我可以为该表创建一个仅包含我需要的字段的 django 模型吗?它可以工作吗?它会完全搞乱迁移吗? django中通常如何处理这种情况?

最佳答案

您可以使用元选项 db-tablemanaged

class ModelWithFewFields(models.Model):
# Fields declare here

class Meta:
db_table = 'Real_DB_TABLE_NAME'
managed = False

关于python - 为外部导入的表创建 django 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47401709/

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