Refactor investor-related schemas and models; implement investor CRUD operations and update stage_focus values to uppercase

This commit is contained in:
bolade
2025-09-03 09:41:19 +01:00
parent 7b58834316
commit 84cbb888e6
9 changed files with 294 additions and 21 deletions
+6 -6
View File
@@ -9,12 +9,12 @@ from db.db import Base
class InvestmentStage(enum.Enum):
SEED = "seed"
SERIES_A = "series_a"
SERIES_B = "series_b"
SERIES_C = "series_c"
GROWTH = "growth"
LATE_STAGE = "late_stage"
SEED = "SEED"
SERIES_A = "SERIES_A"
SERIES_B = "SERIES_B"
SERIES_C = "SERIES_C"
GROWTH = "GROWTH"
LATE_STAGE = "LATE_STAGE"
# Association table for many-to-many relationship between investors and companies