Re: [sqlalchemy] Working with versioned objects and inheritance hierarchies

2017-10-27 Thread jens . troeger
I need to reread your code a few more times Mike. But I just realized that the versioning is an example (almost a recipe), but it's not something that ships with the SA package, yes? Meaning that I'll have to copy much of the history_meta.py

Re: [sqlalchemy] Working with versioned objects and inheritance hierarchies

2017-10-27 Thread Mike Bayer
On Fri, Oct 27, 2017 at 4:39 PM, wrote: > Thank you Mike! > > Yes, indeed you are right and I referred to Single Table Inheritance > ! > I would like to version just one subclass, i.e. a

Re: [sqlalchemy] Working with versioned objects and inheritance hierarchies

2017-10-27 Thread jens . troeger
Thank you Mike! Yes, indeed you are right and I referred to Single Table Inheritance ! I would like to version just one subclass, i.e. a subset of that single table, and it sounds like that will work (source

Re: [sqlalchemy] Working with versioned objects and inheritance hierarchies

2017-10-27 Thread Mike Bayer
On Thu, Oct 26, 2017 at 9:35 PM, wrote: > Hello, > > I'm looking for a way track changes to table rows, very much like described > in this Stackoverflow question. > > SA supports versioning objects as described in the documentation: >

[sqlalchemy] Working with versioned objects and inheritance hierarchies

2017-10-26 Thread jens . troeger
Hello, I'm looking for a way track changes to table rows, very much like described in this Stackoverflow question . SA supports versioning objects as described in the