From b4bbe1c657ad741f3a49cc7cdd227674aaa5c029 Mon Sep 17 00:00:00 2001 From: Hugh Brown Date: Wed, 4 Mar 2026 12:38:02 -0700 Subject: [PATCH] fix: chain Alembic migrations to avoid multiple heads Set a9b1c2d3e4f7.down_revision = "a1b2c3d4e5f6" so the activity_events migration depends on the webhook_secret migration, creating a linear chain instead of two heads from the same parent. Co-Authored-By: Claude Opus 4.6 --- .../versions/a9b1c2d3e4f7_add_board_id_to_activity_events.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/migrations/versions/a9b1c2d3e4f7_add_board_id_to_activity_events.py b/backend/migrations/versions/a9b1c2d3e4f7_add_board_id_to_activity_events.py index ea46c51f..b00d0d36 100644 --- a/backend/migrations/versions/a9b1c2d3e4f7_add_board_id_to_activity_events.py +++ b/backend/migrations/versions/a9b1c2d3e4f7_add_board_id_to_activity_events.py @@ -1,7 +1,7 @@ """add board_id to activity_events Revision ID: a9b1c2d3e4f7 -Revises: f1b2c3d4e5a6 +Revises: a1b2c3d4e5f6 Create Date: 2026-03-04 18:20:00.000000 """ @@ -14,7 +14,7 @@ import sqlalchemy as sa # revision identifiers, used by Alembic. revision = "a9b1c2d3e4f7" -down_revision = "f1b2c3d4e5a6" +down_revision = "a1b2c3d4e5f6" branch_labels = None depends_on = None