33 lines
790 B
Python
33 lines
790 B
Python
"""empty message
|
|
|
|
Revision ID: 279578d46236
|
|
Revises: 2a6772c55c55
|
|
Create Date: 2023-04-15 15:00:54.859894
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '279578d46236'
|
|
down_revision = '2a6772c55c55'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('appointment', schema=None) as batch_op:
|
|
batch_op.add_column(sa.Column('num', sa.Integer(), nullable=True))
|
|
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade():
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
with op.batch_alter_table('appointment', schema=None) as batch_op:
|
|
batch_op.drop_column('num')
|
|
|
|
# ### end Alembic commands ###
|