fix: rename migration revision id to avoid varchar(32) overflow and duplicate id
All checks were successful
Deploy to Production / deploy (push) Successful in 3m5s
All checks were successful
Deploy to Production / deploy (push) Successful in 3m5s
This commit is contained in:
parent
ba9c92f034
commit
49e60b7048
@ -1,6 +1,6 @@
|
||||
"""Add last_heartbeat to job_logs and mark orphaned running jobs as failed
|
||||
|
||||
Revision ID: 2026_05_10_job_log_heartbeat_orphan
|
||||
Revision ID: c9d8e7f6a5b4
|
||||
Revises: f6a7b8c9d0e1
|
||||
Create Date: 2026-05-10
|
||||
|
||||
@ -9,7 +9,7 @@ from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from datetime import datetime, timedelta, timezone
|
||||
|
||||
revision = '2026_05_10_job_log_heartbeat_orphan'
|
||||
revision = 'c9d8e7f6a5b4'
|
||||
down_revision = 'f6a7b8c9d0e1'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
@ -1,7 +1,7 @@
|
||||
"""merge_heads
|
||||
|
||||
Revision ID: d1c9f0016461
|
||||
Revises: 2026_05_10_job_log_heartbeat_orphan, d7a648f95e83
|
||||
Revises: c9d8e7f6a5b4, d7a648f95e83
|
||||
Create Date: 2026-05-10 16:57:18.210480
|
||||
|
||||
"""
|
||||
@ -13,7 +13,7 @@ import sqlalchemy as sa
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = 'd1c9f0016461'
|
||||
down_revision: Union[str, None] = ('2026_05_10_job_log_heartbeat_orphan', 'd7a648f95e83')
|
||||
down_revision: Union[str, None] = ('c9d8e7f6a5b4', 'd7a648f95e83')
|
||||
branch_labels: Union[str, Sequence[str], None] = None
|
||||
depends_on: Union[str, Sequence[str], None] = None
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user