小马如何设置列注释

时间:2019-04-01 12:39:15

标签: python ponyorm

我想用pony设置Column注释,但找不到comment参数,

我想要下面的评论列

class User(db.Entity):
    __tablename__ = 'account_collection'
    uid = Required(str, max_len=50, comment='unique user id')
    name = Required(str, max_len=50, comment='username')

但是它不能工作并引发TypeError: Attribute User.uid has unknown option 'comment'

1 个答案:

答案 0 :(得分:0)

Pony还不支持任何评论。 也许有一天我们会添加此功能。