检查表中是否存在列

问题描述 投票:0回答:1

对于上下文:我正在编写一个脚本来进行数据库迁移。

想要针对实际表检查模型以查看是否存在所有字段。

或者想检查表上是否存在特定列(字段)。

我可以看到http://docs.peewee-orm.com/en/latest/peewee/api.html#Model.table_exists存在,所以我正在寻找Field的必然结果。

提前致谢!

peewee
1个回答
2
投票

您可以调用database.get_columns('table_name'),它将返回表格中的列。

© www.soinside.com 2019 - 2024. All rights reserved.