Re: [sqlalchemy] Table to track applied migrations?

2020-08-19 Thread Jasen Jacobsen
Audit-Alembic meets the requirement. It creates an alembic_version_history table, and populates it with Alembic events. Unfortunately, it was last updated three years ago and I believe is out of date (it's check for whether 'on_version_apply' exists f

Re: [sqlalchemy] Table to track applied migrations?

2020-08-19 Thread Mike Bayer
this is issue 309 https://github.com/sqlalchemy/alembic/issues/309 waiting for someone with the time and motivation to work on it. On Wed, Aug 19, 2020, at 11:25 AM, Jasen Jacobsen wrote: > I've used Liquibase in the past and as part of its migration tracking it > creates a table which lists

[sqlalchemy] Table to track applied migrations?

2020-08-19 Thread Jasen Jacobsen
I've used Liquibase in the past and as part of its migration tracking it creates a table which lists each migration applied. See Liquibase Changelog Table . Alembic has the alembic_version table, but it only holds a single r