[sqlalchemy] allow_column_override

2008-05-15 Thread Chris Guin
My goal is to have a one-to-many relation defined using the same name as the foreign key column underneath. So that, if my Detection table has a foreignkey column named sensor, the following mappers should work, I think: mapper(Sensor, sensor) detectionmapper = mapper(Detection, detection,

[sqlalchemy] Re: Multiple Levels of Inheritance

2008-03-28 Thread Chris Guin
Thanks! That appears to have done it. Chris Guin At 05:28 PM 3/27/2008, you wrote: On Mar 27, 2008, at 3:54 PM, Chris Guin wrote: Does anyone know where I could find a working example of multiple levels of inheritance using joined table inheritance? Right now I have the following