"""empty message Revision ID: d144b387c827 Revises: 5f8bf559eda9 Create Date: 2022-12-22 10:11:23.453334 """ import sqlalchemy as sa from alembic import op # revision identifiers, used by Alembic. revision = 'd144b387c827' down_revision = '5f8bf559eda9' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('artist', schema='dna') as batch_op: batch_op.add_column(sa.Column('comment', sa.String(length=1024), nullable=True)) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('artist', schema='dna') as batch_op: batch_op.drop_column('comment') # ### end Alembic commands ###