Re: [sqlalchemy] "Best" way to build a historical change tracking abstraction?

2019-05-25 Thread Mike Bayer
On Sat, May 25, 2019, at 5:10 AM, Antony Gelberg wrote: > I have a table "delivery" with a "status" column (yes, I still think in > tables, not sure if this is a cause for concern...). I need to refactor it to > track status history rather than just the current status. I would want to be >

[sqlalchemy] "Best" way to build a historical change tracking abstraction?

2019-05-25 Thread Antony Gelberg
I have a table "delivery" with a "status" column (yes, I still think in tables, not sure if this is a cause for concern...). I need to refactor it to track status history rather than just the current status. I would want to be able to query this data later to present history to the user. I