2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-21 14:20:54 +00:00

Add 'virtual' part flag

This commit is contained in:
Oliver Walters
2019-06-18 18:34:07 +10:00
parent f114192264
commit c9c851bead
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.2 on 2019-06-18 08:33
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('part', '0008_auto_20190618_0042'),
]
operations = [
migrations.AddField(
model_name='part',
name='virtual',
field=models.BooleanField(default=False, help_text='Is this a virtual part, such as a software product or license?'),
),
]