我想用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'
答案 0 :(得分:0)
Pony还不支持任何评论。 也许有一天我们会添加此功能。