fix: shorten alembic revision ID to fit varchar(32) column

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
jlightner 2026-04-02 16:59:52 +00:00
parent f0d0b8ac1a
commit f2efabcc99

View file

@ -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' eliminating the 24-hour TTL data loss risk. Also adds the 'stage_rerun'
trigger value for single-stage re-run support. 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 Revises: 010_add_pipeline_runs
""" """
from alembic import op from alembic import op
import sqlalchemy as sa import sqlalchemy as sa
from sqlalchemy.dialects.postgresql import JSONB from sqlalchemy.dialects.postgresql import JSONB
revision = "011_classification_cache_and_stage_rerun" revision = "011_cls_cache_rerun"
down_revision = "010_add_pipeline_runs" down_revision = "010_add_pipeline_runs"
branch_labels = None branch_labels = None
depends_on = None depends_on = None