mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
19 lines
438 B
Python
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),
|
|
),
|
|
]
|