[sqlalchemy] declarative polymorphic inheritance abstraction problem

2014-02-10 Thread Chris Withers
Hi All, I'm trying to be efficient with my code, but it seems to tripping SQLAlchemy up. So, basically I want to have a schema with two tables, content and project, to represent two three types of object: - article has a set of fields as found in the 'content' table - project has fields

Re: [sqlalchemy] declarative polymorphic inheritance abstraction problem

2014-02-10 Thread Michael Bayer
On Feb 10, 2014, at 2:36 PM, Chris Withers ch...@simplistix.co.uk wrote: Hi All, I'm trying to be efficient with my code, but it seems to tripping SQLAlchemy up. So, basically I want to have a schema with two tables, content and project, to represent two three types of object: if you