2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 20:16:44 +00:00
InvenTree/InvenTree/order/migrations/0010_purchaseorderlineitem_notes.py
2019-06-13 21:57:35 +10:00

19 lines
438 B
Python

# 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),
),
]