There are couple of reasons why above dependencies should be removed:
libraries are buggy and are not well maintained.
standard SQL now support with recursive statement i.e. common table expressions = cte which are useful when searching through hierarchies.
mptt is especially problematic as the tree structure is maintained in application level using extra attributes (left and right) and
there is a full "tree rebuild" on every insert (very dubious practice) - left/right attributes need to be updated for all nodes!
If there is a bug/error while "rebuilding tree" - the whole tree may become corrupt which is to say that some folder and documents just vanish from the radar - which is to say "not good"!
The funny part is that mptt/polymorphic/polymorphic tree is very easy to replace with own code.
Remove the dependency on the following packages:
There are couple of reasons why above dependencies should be removed:
with recursive
statement i.e.common table expressions = cte
which are useful when searching through hierarchies.mptt is especially problematic as the tree structure is maintained in application level using extra attributes (left and right) and
The funny part is that mptt/polymorphic/polymorphic tree is very easy to replace with own code.