Assign Approvals a unique migration revision

This commit is contained in:
2026-08-03 15:04:39 +02:00
parent 24e95591e0
commit 3abbe117e5
2 changed files with 3 additions and 3 deletions
@@ -1,6 +1,6 @@
"""v0.1.14 Approvals runtime.
Revision ID: 8b9c0d1e2f3a
Revision ID: a91c4e72b5d8
Revises: None
"""
@@ -10,7 +10,7 @@ from alembic import op
import sqlalchemy as sa
revision = "8b9c0d1e2f3a"
revision = "a91c4e72b5d8"
down_revision = None
branch_labels = None
depends_on = "4f2a9c8e7b6d"
+1 -1
View File
@@ -34,7 +34,7 @@ class ApprovalsMigrationTests(unittest.TestCase):
)
with engine.connect() as connection:
self.assertIn(
"8b9c0d1e2f3a",
"a91c4e72b5d8",
set(MigrationContext.configure(connection).get_current_heads()),
)
finally: