Delete start projects and commit session in delete_start_projects function

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-04-02 11:54:47 -03:00
commit 2e320bd9bb

View file

@ -192,6 +192,7 @@ def delete_start_projects(session):
).all()
for flow in flows:
session.delete(flow)
session.commit()
def create_or_update_starter_projects():