Re: [sqlalchemy] Is there a built-in concept of model/schema versioning?

2020-01-24 Thread Mike Bayer
On Fri, Jan 24, 2020, at 8:49 AM, Matt S wrote: > Does Alembic has the concept of versioned schemas/models? In Alembic, I need > to re-define a model which matches the database table for the current > migration. Becomes verbose after several migrations, redefining the same > out-of-date

[sqlalchemy] Is there a built-in concept of model/schema versioning?

2020-01-24 Thread Matt S
Does Alembic has the concept of versioned schemas/models? In Alembic, I need to re-define a model which matches the database table for the current migration. Becomes verbose after several migrations, redefining the same out-of-date model. So I created a "legacy_models" module where I define old