Re: [sqlalchemy] is it possible to automatically create child from parent when there is a one-to-one relationship?

2018-03-17 Thread Mike Bayer
On Fri, Mar 16, 2018 at 6:23 PM, Jonathan Vanasco wrote: > I'm refactoring a large table and moving some write-heavy columns into their > own table > > Is there a way to automatically create the child when the parent is > generated, or must this be done manually? this is the

[sqlalchemy] is it possible to automatically create child from parent when there is a one-to-one relationship?

2018-03-16 Thread Jonathan Vanasco
I'm refactoring a large table and moving some write-heavy columns into their own table Is there a way to automatically create the child when the parent is generated, or must this be done manually? I couldn't find anything in the docs. This is almost a variant of inherited tables, but there