"""empty message Revision ID: b90a9ae0e761 Revises: 616ab0e2fb0d Create Date: 2023-02-01 20:16:39.317940 """ import sqlalchemy as sa from alembic import op # revision identifiers, used by Alembic. revision = 'b90a9ae0e761' down_revision = '616ab0e2fb0d' branch_labels = None depends_on = None def upgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('weekly_report', schema='dna') as batch_op: batch_op.add_column(sa.Column('tiktok_verified', sa.Boolean(), nullable=True)) batch_op.drop_column('tiktok_veried') # ### end Alembic commands ### def downgrade(): # ### commands auto generated by Alembic - please adjust! ### with op.batch_alter_table('weekly_report', schema='dna') as batch_op: batch_op.add_column(sa.Column('tiktok_veried', sa.BOOLEAN(), autoincrement=False, nullable=True)) batch_op.drop_column('tiktok_verified') # ### end Alembic commands ###