33 lines
803 B
Python
33 lines
803 B
Python
"""empty message
|
|
|
|
Revision ID: 8e838956713f
|
|
Revises: 256c3a3e91a2
|
|
Create Date: 2024-03-20 19:03:51.112016
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '8e838956713f'
|
|
down_revision = '256c3a3e91a2'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('oboruds', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('numberved', sa.String(length=100), nullable=True))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('oboruds', schema=None) as batch_op:
|
|
batch_op.drop_column('numberved')
|
|
|
|
# ### end Alembic commands ###
|