Re: [sqlalchemy] Single table inheritance subclass relations

2010-03-11 Thread Michael Bayer
Conor wrote: > I'm having trouble with many-to-one relationships to subclasses that use > single table inheritance. I have tried this in 0.5.8 and 0.6beta1. that's what I get for not trying to answer every single email, a 6 month old bug which I've missed. This is very small and I've created and

[sqlalchemy] Single table inheritance subclass relations

2010-03-11 Thread Conor
I'm having trouble with many-to-one relationships to subclasses that use single table inheritance. I have tried this in 0.5.8 and 0.6beta1. Here is my test case: import sqlalchemy as sa from sqlalchemy import orm from sqlalchemy.ext.declarative import declarative_base Base = declarative_base()