Add project management functionality with CRUD operations and associations; introduce project schemas and update main application routing.

This commit is contained in:
bolade
2025-09-27 08:53:59 +01:00
parent abac19c6ae
commit d36367fbe9
11 changed files with 639 additions and 5 deletions
+3 -1
View File
@@ -231,4 +231,6 @@ def delete_investor(investor_id: int, db: Session = Depends(get_db)):
db.delete(db_investor)
db.commit()
return {"message": "Investor deleted successfully"}
return {"message": "Investor deleted successfully"}