0
In a project management system we have the entities "Users" and "Projects".
I would like to evolve this basic structure into a structure that has teams. Example: Project 1 has 3 members.
What is the best way to persist with this structure? Is this ? Where a user would create the project and then add new members to the structure...
this model seems good to me. it’s simple, if you think that Users - Projects is a relationship
n:n
orn:m
, basically a link table like the Users_projects solves– Ricardo Pontual