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:
parent
f0d0b8ac1a
commit
f2efabcc99
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue