mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 21:16:46 +00:00
19 lines
450 B
Python
19 lines
450 B
Python
# Generated by Django 3.0.5 on 2020-05-13 00:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0038_stockitemattachment_upload_date'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='stockitemattachment',
|
|
name='comment',
|
|
field=models.CharField(blank=True, help_text='File comment', max_length=100),
|
|
),
|
|
]
|