I'm having some serious issues writing a small app that helps me organize my thoughts.
The data structure allows for three objects.. Folders, projects, and ideas.
Folders can contain other folders, projects and ideas.
Projects can contain folders and ideas but not other projects.
Folders within projects cannot contain other projects.
Ideas don't contain anything.
The depth should be unlimited, but having programmed relational databases before I know that I should probably have a limit.
How would this be possible?
The data structure allows for three objects.. Folders, projects, and ideas.
Folders can contain other folders, projects and ideas.
Projects can contain folders and ideas but not other projects.
Folders within projects cannot contain other projects.
Ideas don't contain anything.
The depth should be unlimited, but having programmed relational databases before I know that I should probably have a limit.
How would this be possible?