I'm working on a project that required categories, I used a nested set model and it worked out well. I have another portion of the same project, however it requires a different type of hierarchy, there will only ever be a parent. So, an item can only EVER relate to one other item.
Would you say for this, using simply parent_id would be more appropriate then a full nested set model?
Thank you!