[Sqlalchemy-tickets] Issue #4138: Adding column comment to the column __repr__ (zzzeek/sqlalchemy)
Brought to you by:
zzzeek
From: Jorge S. <iss...@bi...> - 2017-11-23 14:29:42
|
New issue 4138: Adding column comment to the column __repr__ https://bitbucket.org/zzzeek/sqlalchemy/issues/4138/adding-column-comment-to-the-column Jorge Sierra: under schema.py class Column(SchemaItem, ColumnClause): function def __repr__(self): add if self.comment: kwarg.append('comment') to the keywords for creating a __repr__ of a Column Responsible: zzzeek |