feature/doda-endpoints-faltantes

This commit is contained in:
2026-04-28 14:53:08 -06:00
parent daf7758b9f
commit 07ba33a4d9
13 changed files with 828 additions and 12 deletions

View File

@@ -0,0 +1,29 @@
"""add action column to doda_alta_log
Revision ID: c3d4e5f6a7b8
Revises: b2c3d4e5f6a7
Create Date: 2026-04-28 13:20:00.000000
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = "c3d4e5f6a7b8"
down_revision = "b2c3d4e5f6a7"
branch_labels = None
depends_on = None
def upgrade() -> None:
op.add_column(
"doda_alta_log",
sa.Column("action", sa.String(length=20), nullable=True),
schema="a76",
)
def downgrade() -> None:
op.drop_column("doda_alta_log", "action", schema="a76")