Skip to content

Commit e4a7d5f

Browse files
committed
Add missing migration file
Signed-off-by: tdruez <[email protected]>
1 parent 5fe3bc8 commit e4a7d5f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 5.2.4 on 2025-07-30 13:00
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('component_catalog', '0011_alter_component_owner'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='component',
15+
name='children',
16+
field=models.ManyToManyField(through='component_catalog.Subcomponent', through_fields=('parent', 'child'), to='component_catalog.component'),
17+
),
18+
]

0 commit comments

Comments
 (0)