mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 13:06:45 +00:00
19 lines
516 B
Python
19 lines
516 B
Python
# Generated by Django 3.0.7 on 2021-02-19 04:49
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('report', '0012_buildreport'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='testreport',
|
|
name='include_installed',
|
|
field=models.BooleanField(default=False, help_text='Include test results for stock items installed inside assembled item', verbose_name='Include Installed Tests'),
|
|
),
|
|
]
|