"""empty message Revision ID: 825055b22ab0 Revises: d144b387c827 Create Date: 2022-12-23 11:28:30.026052 """ import sqlalchemy as sa from alembic import op # revision identifiers, used by Alembic. revision = '825055b22ab0' down_revision = 'd144b387c827' 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('escaped_name', sa.String(length=255), nullable=False)) with op.batch_alter_table('label', schema='dna') as batch_op: batch_op.add_column(sa.Column('escaped_name', sa.String(length=255), nullable=False)) # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('label', schema='dna') as batch_op: batch_op.drop_column('escaped_name') with op.batch_alter_table('artist', schema='dna') as batch_op: batch_op.drop_column('escaped_name') # ### end Alembic commands ###