mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-04 22:38:49 +00:00
19 lines
454 B
Python
19 lines
454 B
Python
# Generated by Django 3.0.5 on 2020-05-16 10:14
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('stock', '0040_stockitemtestresult'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='stockitemtestresult',
|
|
name='notes',
|
|
field=models.CharField(blank=True, help_text='Test notes', max_length=500, verbose_name='Notes'),
|
|
),
|
|
]
|