"""added picture back

Revision ID: 965fc805863c
Revises: a6490491ef3a
Create Date: 2024-07-31 12:58:34.937371

"""
from alembic import op
import sqlalchemy as sa


# revision identifiers, used by Alembic.
revision = '965fc805863c'
down_revision = 'a6490491ef3a'
branch_labels = None
depends_on = None


def upgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    with op.batch_alter_table('user', schema=None) as batch_op:
        batch_op.add_column(sa.Column('profile_picture', sa.String(length=200), nullable=True))

    # ### end Alembic commands ###


def downgrade():
    # ### commands auto generated by Alembic - please adjust! ###
    with op.batch_alter_table('user', schema=None) as batch_op:
        batch_op.drop_column('profile_picture')

    # ### end Alembic commands ###
