mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-06 15:28:49 +00:00
19 lines
495 B
Python
19 lines
495 B
Python
# Generated by Django 3.2 on 2021-06-01 03:58
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0065_auto_20210505_2144'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='bomitem',
|
|
name='allow_variants',
|
|
field=models.BooleanField(default=False, help_text='Stock items for variant parts can be used for this BOM item', verbose_name='Allow Variants'),
|
|
),
|
|
]
|