Skip to content

Commit 36c53be

Browse files
fix(db): fix alembic migration after rebase (#2791)
fix(db): fix alembic migration after rebase Correct the ‹down_revision› as I have not noticed that a migration has occurred in the meantime, causing migration to fail after the deployment. Reviewed-by: Nikola Forró
2 parents 4273b1f + c9e2799 commit 36c53be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

alembic/versions/48b09a73cf77_add_canceled_state_to_buildstatus.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Add canceled state to BuildStatus
22
33
Revision ID: 48b09a73cf77
4-
Revises: eadd57289c17
4+
Revises: 16219ebce6cb
55
Create Date: 2025-04-23 13:44:56.196348
66
77
"""
@@ -10,7 +10,7 @@
1010

1111
# revision identifiers, used by Alembic.
1212
revision = "48b09a73cf77"
13-
down_revision = "eadd57289c17"
13+
down_revision = "16219ebce6cb"
1414
branch_labels = None
1515
depends_on = None
1616

0 commit comments

Comments
 (0)