fix(migrations): repoint secrets migration onto current Alembic head

The add-secrets migration branched off b5e7c9d1f3a2, but the add-slug
migration c6d7e8f9a0b1 has since landed on that same parent, leaving two
Alembic heads. `alembic upgrade head` then refuses to run and the node
fails to boot. Repoint down_revision onto the current head so the chain
is linear again.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Jeroen Ubbink
2026-07-23 10:51:20 +02:00
co-authored by Claude Opus 4.8
parent b8700dde40
commit 5d5c849180
@@ -1,8 +1,8 @@
"""add secrets table
Revision ID: c6f8d2e4a1b3
Revises: b5e7c9d1f3a2
Create Date: 2026-06-24 00:00:00.000000
Revises: c6d7e8f9a0b1
Create Date: 2026-07-07 00:00:00.000000
Creates the node-level singleton secret store (issue #553). Schema only; moving
any legacy plaintext into the encrypted/hashed columns happens at bootstrap,
@@ -14,7 +14,7 @@ import sqlmodel
from alembic import op
revision = "c6f8d2e4a1b3"
down_revision = "b5e7c9d1f3a2"
down_revision = "c6d7e8f9a0b1"
branch_labels = None
depends_on = None