2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-16 20:15:44 +00:00

Add "pack_units" field to the SupplierPart model

This commit is contained in:
Oliver
2023-05-19 14:03:12 +10:00
parent 26b408422c
commit 93649b24bf
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 3.2.19 on 2023-05-19 03:41
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('company', '0058_auto_20230515_0004'),
]
operations = [
migrations.AddField(
model_name='supplierpart',
name='pack_units',
field=models.CharField(blank=True, help_text='Units of measure for this supplier part', max_length=25, verbose_name='Packaging Units'),
),
]