[sqlalchemy] Retrofitting class inheritance

2014-12-06 Thread YKdvd
I inherited a database which has two tables containing some similar information, with additional differences. In terms of SQLAlchemy Class Inheritance Hierarchies docs, there is an engineer table and a manager table, but no Employee class or table. Porting to Python and SQLA initially my

Re: [sqlalchemy] Retrofitting class inheritance

2014-12-06 Thread Michael Bayer
On Dec 6, 2014, at 3:38 AM, YKdvd davidobe...@gmail.com wrote: I inherited a database which has two tables containing some similar information, with additional differences. In terms of SQLAlchemy Class Inheritance Hierarchies docs, there is an engineer table and a manager table, but no