I want to model out the following in the easiest way:
A skill has many dependent skills.
Each skill should exist on their own, and a skill may have other skills that are prerequisite skills.
For example:
Skill: Front-End Development Has Dependent Skills -> [HTML, CSS, SCSS]
Skill: Web-Design Has Dependent Skills -> [HTML, CSS]
Skill: HTML
I'd like to be able to do:
@front_end_development.dependent_skills ##or a more semantic mapping
I'd probably like to walk up the tree but I can't think of the best name to do so. Perhaps I'd like to reference through HTML that Web-Design depends upon it.
Does it make sense to make this self-referential or is the fact that this is hurting my brain a code smell and beg that something else is ideal? It all comes down to a skill depending on other skills.
Would it be better to model this using mongo?