2024-07-29 11:43:52 +08:00

33 lines
778 B
Python

"""empty message
Revision ID: 39e44c8af34c
Revises: 7738309ad0d0
Create Date: 2023-04-06 16:45:14.509974
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = '39e44c8af34c'
down_revision = '7738309ad0d0'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('users', schema=None) as batch_op:
batch_op.add_column(sa.Column('age', sa.Integer(), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
with op.batch_alter_table('users', schema=None) as batch_op:
batch_op.drop_column('age')
# ### end Alembic commands ###