| 12345678910111213141516171819202122232425262728293031 | """app config add speech_to_textRevision ID: a5b56fb053efRevises: d3d503a3471cCreate Date: 2023-07-06 17:55:20.894149"""import sqlalchemy as safrom alembic import op# revision identifiers, used by Alembic.revision = 'a5b56fb053ef'down_revision = 'd3d503a3471c'branch_labels = Nonedepends_on = Nonedef upgrade():    # ### commands auto generated by Alembic - please adjust! ###    with op.batch_alter_table('app_model_configs', schema=None) as batch_op:        batch_op.add_column(sa.Column('speech_to_text', sa.Text(), nullable=True))    # ### end Alembic commands ###def downgrade():    # ### commands auto generated by Alembic - please adjust! ###    with op.batch_alter_table('app_model_configs', schema=None) as batch_op:        batch_op.drop_column('speech_to_text')    # ### end Alembic commands ###
 |