mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
19 lines
459 B
Python
19 lines
459 B
Python
# 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?'),
|
|
),
|
|
]
|