fix: alembic migration chain 025→026 (down_revision mismatch)

025_module_toggles pointed to '024_bot_trades_released_at' but 024's
revision ID is just '024'. 026 pointed to '025' but 025's ID is
'025_module_toggles'. Both breaks caused 'alembic upgrade head' to
fail with KeyError on any fresh Postgres install — a launch blocker.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
k
2026-05-29 17:21:44 +08:00
parent 6d50357d11
commit 97ea17c0c1
2 changed files with 2 additions and 2 deletions
@@ -7,7 +7,7 @@ Create Date: 2026-05-28
from alembic import op
revision = '026'
down_revision = '025'
down_revision = '025_module_toggles'
branch_labels = None
depends_on = None