mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
7578cab9a8
- Required to link the build to the output in case of variant stock
21 lines
577 B
Python
21 lines
577 B
Python
# Generated by Django 3.2 on 2021-06-01 05:23
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0066_bomitem_allow_variants'),
|
|
('build', '0027_auto_20210404_2016'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='builditem',
|
|
name='bom_item',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='allocate_build_items', to='part.bomitem'),
|
|
),
|
|
]
|