From 9618e345e84bdfa2ba86d77d80cebfad8a40e492 Mon Sep 17 00:00:00 2001 From: Renn F Date: Sat, 18 Jul 2026 19:14:36 +0200 Subject: [PATCH] =?UTF-8?q?fix(alembic):=20renumber=20git=5Fprovider=20mig?= =?UTF-8?q?ration=20to=20076=20=E2=80=94=20single=20head=20restored?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The two parallel spec-item branches each took 075 off head 074 (flagged in both PRs); merging both left two alembic heads. git_provider now revises 075_company_goals_company_name; verified with a real upgrade chain run. --- ...roject_git_provider.py => 076_project_git_provider.py} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename alembic/versions/{075_project_git_provider.py => 076_project_git_provider.py} (87%) diff --git a/alembic/versions/075_project_git_provider.py b/alembic/versions/076_project_git_provider.py similarity index 87% rename from alembic/versions/075_project_git_provider.py rename to alembic/versions/076_project_git_provider.py index 29f840a8..7354459b 100644 --- a/alembic/versions/075_project_git_provider.py +++ b/alembic/versions/076_project_git_provider.py @@ -10,8 +10,8 @@ a registration-time rejection unless the operator sets this column explicitly project keeps resolving to GitHub behavior until GitLab/Gitea providers land in a later phase. -Revision ID: 075_project_git_provider -Revises: 074_telegram_credentials +Revision ID: 076_project_git_provider +Revises: 075_company_goals_company_name Create Date: 2026-07-18 """ @@ -20,8 +20,8 @@ from __future__ import annotations import sqlalchemy as sa from alembic import op -revision = "075_project_git_provider" -down_revision = "074_telegram_credentials" +revision = "076_project_git_provider" +down_revision = "075_company_goals_company_name" branch_labels: dict[str, str] | None = None depends_on: dict[str, str] | None = None