Hey there,
i am playing with both mptt and treebeard atm and cannot get them to work with the model setup i'd like to use.
Here's what i'd LIKE to use
- abstractModel
- baseModel(abstractModel, NS_Node)
- actualModel(baseModel)
The idea is to have an abstract model to start with. It provides some common fields to stick to DRY. The baseModel is a generic object that is supposed to hold the tree. The actualModel is inheriting from baseModel to add type-specific Fields to mix different objects in a single tree (wich is stored in the baseModel table).
Now no matter what i tried i get unknown column errors when adding children (root nodes work). I also tried without the abstract model and hence having baseModel(NS_Node).
Is there any way to get treebeard to work like outlined ?
Kind Regards and thanks in advance,
Thorsten