mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-30 20:46:47 +00:00
25 lines
779 B
Python
25 lines
779 B
Python
# Generated by Django 2.2 on 2019-04-16 14:45
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('part', '0009_auto_20190417_0019'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='supplierpart',
|
|
name='minimum',
|
|
field=models.PositiveIntegerField(default=1, help_text='Minimum order quantity (MOQ)', validators=[django.core.validators.MinValueValidator(1)]),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='supplierpart',
|
|
name='multiple',
|
|
field=models.PositiveIntegerField(default=1, help_text='Order multiple', validators=[django.core.validators.MinValueValidator(1)]),
|
|
),
|
|
]
|