=== Arborescences [source,python] ---- ---- [source,python] ---- # /management/commands/rebuild.py """This command manages Closure Tables implementation It adds new levels and cleans links between entities. This way, it's relatively easy to fetch an entire tree with just one tiny request. """ from django.core.management.base import BaseCommand from rps.structure.models import Entity, EntityTreePath class Command(BaseCommand): def handle(self, *args, **options): entities = Entity.objects.all() for entity in entities: breadcrumb = [node for node in entity.breadcrumb()] tree = set(EntityTreePath.objects.filter(descendant=entity)) for idx, node in enumerate(breadcrumb): tree_path, _ = EntityTreePath.objects.get_or_create( ancestor=node, descendant=entity, weight=idx + 1 ) if tree_path in tree: tree.remove(tree_path) for tree_path in tree: tree_path.delete() ----