You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I execute alembic upgrade head one column is missing and it looks like this revision was just skipped.
To fix this I need to manually downgrade to revision before the skipped one using alembic downgrade 1ab95561edae, which means commenting the downgrade method, because the column is missing, and running alembic upgrade head again.
* When using production database one revision was skipped. This was caused
by bad order of the revisions.
* Thanks to recent changes to alembic.ini one issue was found in ansible
script that tried to replace non-existing line in alembic.ini.
Fixesfedora-infra#819.
Signed-off-by: Michal Konečný <[email protected]>
* When using production database one revision was skipped. This was caused
by bad order of the revisions.
* Thanks to recent changes to alembic.ini one issue was found in ansible
script that tried to replace non-existing line in alembic.ini.
Fixes#819.
Signed-off-by: Michal Konečný <[email protected]>
When I execute
alembic upgrade head
one column is missing and it looks like this revision was just skipped.To fix this I need to manually downgrade to revision before the skipped one using
alembic downgrade 1ab95561edae
, which means commenting the downgrade method, because the column is missing, and runningalembic upgrade head
again.Reported upstream sqlalchemy/alembic#598
The text was updated successfully, but these errors were encountered: