from utils.db_connect import engine
from sqlalchemy import text
with engine.connect() as conn:
    conn.execute(text("UPDATE alembic_version SET version_num = '80bdf028ebef'"))
    conn.commit()
