This is an automated email from the ASF dual-hosted git repository.
sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-release.git
The following commit(s) were added to refs/heads/main by this push:
new 19699cf Drop a temporary Alembic table if it exists
19699cf is described below
commit 19699cf1b2e1236c2cc8cbd8ddd2437bcd3bfc50
Author: Sean B. Palmer <[email protected]>
AuthorDate: Thu Sep 4 19:59:18 2025 +0100
Drop a temporary Alembic table if it exists
---
migrations/versions/0026_2025.09.04_eb02c4d9.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/migrations/versions/0026_2025.09.04_eb02c4d9.py
b/migrations/versions/0026_2025.09.04_eb02c4d9.py
index 380c808..130c1e5 100644
--- a/migrations/versions/0026_2025.09.04_eb02c4d9.py
+++ b/migrations/versions/0026_2025.09.04_eb02c4d9.py
@@ -18,6 +18,7 @@ depends_on: str | Sequence[str] | None = None
def upgrade() -> None:
+ op.execute("DROP TABLE IF EXISTS _alembic_tmp_releasepolicy")
with op.batch_alter_table("releasepolicy", schema=None) as batch_op:
batch_op.add_column(sa.Column("github_compose_workflow_path",
sa.String(), nullable=False, server_default=""))
batch_op.add_column(sa.Column("github_vote_workflow_path",
sa.String(), nullable=False, server_default=""))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]