From f2efabcc993c2452e7aecf27a991b3e297e94b54 Mon Sep 17 00:00:00 2001 From: jlightner Date: Thu, 2 Apr 2026 16:59:52 +0000 Subject: [PATCH] fix: shorten alembic revision ID to fit varchar(32) column Co-Authored-By: Claude Opus 4.6 (1M context) --- alembic/versions/011_classification_cache_and_stage_rerun.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alembic/versions/011_classification_cache_and_stage_rerun.py b/alembic/versions/011_classification_cache_and_stage_rerun.py index 4cf4cb8..6f1e4b8 100644 --- a/alembic/versions/011_classification_cache_and_stage_rerun.py +++ b/alembic/versions/011_classification_cache_and_stage_rerun.py @@ -4,14 +4,14 @@ Persists stage 4 classification data in PostgreSQL alongside Redis cache, eliminating the 24-hour TTL data loss risk. Also adds the 'stage_rerun' trigger value for single-stage re-run support. -Revision ID: 011_classification_cache_and_stage_rerun +Revision ID: 011_cls_cache_rerun Revises: 010_add_pipeline_runs """ from alembic import op import sqlalchemy as sa from sqlalchemy.dialects.postgresql import JSONB -revision = "011_classification_cache_and_stage_rerun" +revision = "011_cls_cache_rerun" down_revision = "010_add_pipeline_runs" branch_labels = None depends_on = None