# Generated by Django 5.2.7 on 2025-12-14 11:30 from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ("epdb", "0012_node_stereo_removed_pathway_predicted"), ] operations = [ migrations.AddField( model_name="setting", name="expansion_schema", field=models.CharField( choices=[ ("BFS", "Breadth First Search"), ("DFS", "Depth First Search"), ("GREEDY", "Greedy"), ], default="BFS", max_length=20, ), ), ]