From 5d5c849180a8c3851c2fe6b4ed1d5952086320df Mon Sep 17 00:00:00 2001 From: Jeroen Ubbink Date: Tue, 7 Jul 2026 16:17:03 +0200 Subject: [PATCH] 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 --- migrations/versions/c6f8d2e4a1b3_add_secrets_table.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/migrations/versions/c6f8d2e4a1b3_add_secrets_table.py b/migrations/versions/c6f8d2e4a1b3_add_secrets_table.py index f867dd5f..cd41d89c 100644 --- a/migrations/versions/c6f8d2e4a1b3_add_secrets_table.py +++ b/migrations/versions/c6f8d2e4a1b3_add_secrets_table.py @@ -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