2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-01 03:00:54 +00:00

Add 'comment' field to part attachment model

This commit is contained in:
Oliver Walters
2019-04-28 22:40:17 +10:00
parent 2181c82a31
commit ad6f4e19b1
2 changed files with 21 additions and 12 deletions

View File

@ -0,0 +1,18 @@
# Generated by Django 2.2 on 2019-04-28 12:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('part', '0011_auto_20190428_0841'),
]
operations = [
migrations.AddField(
model_name='partattachment',
name='comment',
field=models.CharField(blank=True, help_text='File comment', max_length=100),
),
]