peewee 字段属性help_text的支持问题
至少在__version__ = '2.6.0'的时候,给字段添加help_text的时候,在数据库的ddl语句里面是没有comment的。
看了下源码,顺藤摸瓜,最终定位到了字段(Field类)的__ddl__函数, 源码这里。
如下:
def __ddl__(self, column_type): """Return a list of Node instances that defines the column.""" ddl = [self.as_entity(), self.__ddl_column__(column_type)] if not self.null: ddl.append(SQL('NOT NULL')) if self.primary_key: ddl.append(SQL('PRIMARY KEY')) if self.sequence: ddl.append(SQL("DEFAULT NEXTVAL('%s')" % self.sequence)) if self.constraints: ddl.extend(self.constraints) return ddl
ok,已经确定help_text没有真正实现。
很自然的想到,改一改,重新编译安装。看看官方文档,支持的数据库类型有: sqllite, mysql, postgresql
也就是说,建表时定义comment,至少要支持这三种数据库。
mysql建表时定义comment如下:
create table test(id int(11) comment 'test comment');
postgresql似乎无法在建表时定义字段的帮助信息,看这里。
sqllite不想看咯。
顺便一提,oracle是没有办法在建表的时候给字段添加注释的,参考这里。
因此,最多只能照顾到mysql。不想在这个层次折腾了。用sql(alter table xxx modify column column_definition comment '我的注释')写又要参照python代码里具体模型的定义,吐血中。