fix/alembic-duration-cert-delete
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
"""add annex30_duration_days to company_certification
|
||||
|
||||
Revision ID: 7c8d9e0f1a2b
|
||||
Revises: d1a2b3c4e5f6
|
||||
Create Date: 2026-04-24 16:50:00.000000
|
||||
|
||||
"""
|
||||
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = '7c8d9e0f1a2b'
|
||||
down_revision = 'd1a2b3c4e5f6'
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
op.add_column(
|
||||
"company_certification",
|
||||
sa.Column("annex30_duration_days", sa.Integer(), nullable=True),
|
||||
schema="a76",
|
||||
)
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
op.drop_column("company_certification", "annex30_duration_days", schema="a76")
|
||||
@@ -1,7 +1,7 @@
|
||||
"""create doda_alta_log table
|
||||
|
||||
Revision ID: a1b2c3d4e5f6
|
||||
Revises: 7c8d9e0f1a2b
|
||||
Revises: d1a2b3c4e5f6
|
||||
Create Date: 2026-04-26 10:00:00.000000
|
||||
|
||||
"""
|
||||
@@ -12,7 +12,7 @@ import sqlalchemy as sa
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision = "a1b2c3d4e5f6"
|
||||
down_revision = "7c8d9e0f1a2b"
|
||||
down_revision = "d1a2b3c4e5f6"
|
||||
branch_labels = None
|
||||
depends_on = None
|
||||
|
||||
|
||||
Reference in New Issue
Block a user