mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-07 20:32:12 +00:00
Add 'inherited' field to BomItem
This commit is contained in:
18
InvenTree/part/migrations/0063_bomitem_inherited.py
Normal file
18
InvenTree/part/migrations/0063_bomitem_inherited.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 3.0.7 on 2021-02-17 10:51
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('part', '0062_merge_20210105_0056'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='bomitem',
|
||||
name='inherited',
|
||||
field=models.BooleanField(default=False, help_text='This BOM item is inherited by BOMs for variant parts', verbose_name='Inherited'),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user