18 lines
459 B
Python
18 lines
459 B
Python
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('onboarding', '0002_alter_agentconfig_llm_config_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='onboardingflow',
|
|
name='structure',
|
|
field=models.JSONField(blank=True, default=list, verbose_name='Flow Structure'),
|
|
),
|
|
]
|