in Backend/src/app/database.py [0:0]
def drop_all_tables():
with Session(bind=engine) as session:
for t in ["requisicao", "correcoes", "feedback"]:
log.warning(f"droping table - {t}")
session.exec(text(f"DROP TABLE {t} CASCADE"))
session.commit()
log.warning("done")