编程语言
首页 > 编程语言> > python – 如何在peewee 2中创建一个带枚举的表模型?

python – 如何在peewee 2中创建一个带枚举的表模型?

作者:互联网

我正在尝试创建一个模型来描述一个包含peewee枚举字段的表.

我在2.0版本之前看到EnumField已经从peewee.py文件中删除了,我在当前的文档中找不到任何概述如何实现它的内容.有谁知道我是否可以使用CharField?

解决方法:

在2.0之前没有EnumField,但是有关于实现自定义字段的文档:
http://peewee.readthedocs.org/en/latest/peewee/models.html#creating-a-custom-field

我希望这有帮助.

标签:python,peewee
来源: https://codeday.me/bug/20190517/1123594.html