mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-03 05:48:47 +00:00
- Keeps track of how many outputs have been produced - Will not be directly editable by the user
25 lines
808 B
Python
25 lines
808 B
Python
# Generated by Django 3.0.7 on 2020-10-20 12:48
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('build', '0024_auto_20201020_1144'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='build',
|
|
name='completed',
|
|
field=models.PositiveIntegerField(default=0, help_text='Number of stock items which have been completed', verbose_name='Completed items'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='build',
|
|
name='quantity',
|
|
field=models.PositiveIntegerField(default=1, help_text='Number of stock items to build', validators=[django.core.validators.MinValueValidator(1)], verbose_name='Build Quantity'),
|
|
),
|
|
]
|