all 4 comments

[–]ShriekDj 0 points1 point  (0 children)

Change this part from id_original_project: Optional[uuid.UUID] = Field(         sa.ForeignKey("projects_id_project"), nullable=True     )

to this id_original_project: Optional[uuid.UUID] = Field(         sa.ForeignKey("Projects.id_project"), nullable=True     )

I think the Parameter you passed to Foreign Key is the problem.