mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-02 21:38:48 +00:00
19 lines
423 B
Python
19 lines
423 B
Python
# Generated by Django 2.2 on 2019-04-17 08:12
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0006_stockitem_uuid'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='stockitem',
|
|
name='notes',
|
|
field=models.CharField(blank=True, help_text='Stock Item Notes', max_length=250),
|
|
),
|
|
]
|