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

Add notes field to purchase order line item

This commit is contained in:
Oliver Walters
2019-06-13 21:57:35 +10:00
parent d860336060
commit fe5bb23d13
4 changed files with 30 additions and 5 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2.2 on 2019-06-13 11:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('order', '0009_auto_20190606_2133'),
]
operations = [
migrations.AddField(
model_name='purchaseorderlineitem',
name='notes',
field=models.CharField(blank=True, help_text='Line item notes', max_length=500),
),
]