[sqlalchemy] recommendation sought - implementing custom column type

2014-02-21 Thread Jonathan Vanasco
i currently have a table that looks like this: class MyTable(DeclaredTable): id = sa.Column(sa.Integer, primary_key=True) features_enabled = sa.Column(sa.Integer, nullable=False, default=0, ) _feature_manager = None @property def

Re: [sqlalchemy] recommendation sought - implementing custom column type

2014-02-21 Thread Michael Bayer
On Feb 21, 2014, at 5:48 PM, Jonathan Vanasco jonat...@findmeon.com wrote: i currently have a table that looks like this: class MyTable(DeclaredTable): id = sa.Column(sa.Integer, primary_key=True) features_enabled = sa.Column(sa.Integer, nullable=False, default=0, )